vw_delegated_subnet_service_details
Creates, updates, deletes, gets or lists a vw_delegated_subnet_service_details
resource.
Overview
Name | vw_delegated_subnet_service_details |
Type | View |
Id | azure.delegated_network.vw_delegated_subnet_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,
tags as tags,
JSON_EXTRACT(properties, '$.resourceGuid') as "resource_guid",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.subnetDetails') as "subnet_details",
JSON_EXTRACT(properties, '$.controllerDetails') as "controller_details",
JSON_EXTRACT(properties, '$.allocationBlockPrefixSize') as "allocation_block_prefix_size",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.delegated_network.delegated_subnet_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,
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, '$.subnetDetails') as "subnet_details",
json_extract_path_text(properties, '$.controllerDetails') as "controller_details",
json_extract_path_text(properties, '$.allocationBlockPrefixSize') as "allocation_block_prefix_size",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.delegated_network.delegated_subnet_service_details
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me';