vw_managed_networks
Creates, updates, deletes, gets or lists a vw_managed_networks
resource.
Overview
Name | vw_managed_networks |
Type | View |
Id | azure.managed_network.vw_managed_networks |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
tags as tags,
JSON_EXTRACT(properties, '$.scope') as "scope",
JSON_EXTRACT(properties, '$.connectivity') as "connectivity",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.etag') as "etag",
subscriptionId,
resourceGroupName,
managedNetworkName
FROM azure.managed_network.managed_networks
WHERE subscriptionId = 'replace-me';
SELECT
tags as tags,
json_extract_path_text(properties, '$.scope') as "scope",
json_extract_path_text(properties, '$.connectivity') as "connectivity",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.etag') as "etag",
subscriptionId,
resourceGroupName,
managedNetworkName
FROM azure.managed_network.managed_networks
WHERE subscriptionId = 'replace-me';