vw_attached_networks
Creates, updates, deletes, gets or lists a vw_attached_networks
resource.
Overview
Name | vw_attached_networks |
Type | View |
Id | azure.dev_center.vw_attached_networks |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.networkConnectionId') as "network_connection_id",
JSON_EXTRACT(properties, '$.networkConnectionLocation') as "network_connection_location",
JSON_EXTRACT(properties, '$.healthCheckStatus') as "health_check_status",
JSON_EXTRACT(properties, '$.domainJoinType') as "domain_join_type",
subscriptionId,
resourceGroupName,
projectName,
attachedNetworkConnectionName,
devCenterName
FROM azure.dev_center.attached_networks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND devCenterName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.networkConnectionId') as "network_connection_id",
json_extract_path_text(properties, '$.networkConnectionLocation') as "network_connection_location",
json_extract_path_text(properties, '$.healthCheckStatus') as "health_check_status",
json_extract_path_text(properties, '$.domainJoinType') as "domain_join_type",
subscriptionId,
resourceGroupName,
projectName,
attachedNetworkConnectionName,
devCenterName
FROM azure.dev_center.attached_networks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND devCenterName = 'replace-me';