vw_controller_details
Creates, updates, deletes, gets or lists a vw_controller_details
resource.
Overview
Name | vw_controller_details |
Type | View |
Id | azure.delegated_network.vw_controller_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,
tags as tags,
JSON_EXTRACT(properties, '$.resourceGuid') as "resource_guid",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.dncAppId') as "dnc_app_id",
JSON_EXTRACT(properties, '$.dncTenantId') as "dnc_tenant_id",
JSON_EXTRACT(properties, '$.dncEndpoint') as "dnc_endpoint",
JSON_EXTRACT(properties, '$.purpose') as "purpose",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.delegated_network.controller_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,
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, '$.dncAppId') as "dnc_app_id",
json_extract_path_text(properties, '$.dncTenantId') as "dnc_tenant_id",
json_extract_path_text(properties, '$.dncEndpoint') as "dnc_endpoint",
json_extract_path_text(properties, '$.purpose') as "purpose",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.delegated_network.controller_details
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';