vw_orchestrator_instance_service_details
Creates, updates, deletes, gets or lists a vw_orchestrator_instance_service_details
resource.
Overview
Name | vw_orchestrator_instance_service_details |
Type | View |
Id | azure.delegated_network.vw_orchestrator_instance_service_details |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
kind as kind,
identity as identity,
tags as tags,
JSON_EXTRACT(properties, '$.resourceGuid') as "resource_guid",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.orchestratorAppId') as "orchestrator_app_id",
JSON_EXTRACT(properties, '$.orchestratorTenantId') as "orchestrator_tenant_id",
JSON_EXTRACT(properties, '$.clusterRootCA') as "cluster_root_ca",
JSON_EXTRACT(properties, '$.apiServerEndpoint') as "api_server_endpoint",
JSON_EXTRACT(properties, '$.privateLinkResourceId') as "private_link_resource_id",
JSON_EXTRACT(properties, '$.controllerDetails') as "controller_details",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.delegated_network.orchestrator_instance_service_details
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
kind as kind,
identity as identity,
tags as tags,
json_extract_path_text(properties, '$.resourceGuid') as "resource_guid",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.orchestratorAppId') as "orchestrator_app_id",
json_extract_path_text(properties, '$.orchestratorTenantId') as "orchestrator_tenant_id",
json_extract_path_text(properties, '$.clusterRootCA') as "cluster_root_ca",
json_extract_path_text(properties, '$.apiServerEndpoint') as "api_server_endpoint",
json_extract_path_text(properties, '$.privateLinkResourceId') as "private_link_resource_id",
json_extract_path_text(properties, '$.controllerDetails') as "controller_details",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.delegated_network.orchestrator_instance_service_details
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';