vw_management_group_network_manager_connections
Creates, updates, deletes, gets or lists a vw_management_group_network_manager_connections
resource.
Overview
Name | vw_management_group_network_manager_connections |
Type | View |
Id | azure.network.vw_management_group_network_manager_connections |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
etag as etag,
systemData as system_data,
type as type,
JSON_EXTRACT(properties, '$.networkManagerId') as "network_manager_id",
JSON_EXTRACT(properties, '$.connectionState') as "connection_state",
JSON_EXTRACT(properties, '$.description') as "description",
managementGroupId,
networkManagerConnectionName
FROM azure.network.management_group_network_manager_connections
WHERE managementGroupId = 'replace-me';
SELECT
id as id,
name as name,
etag as etag,
systemData as system_data,
type as type,
json_extract_path_text(properties, '$.networkManagerId') as "network_manager_id",
json_extract_path_text(properties, '$.connectionState') as "connection_state",
json_extract_path_text(properties, '$.description') as "description",
managementGroupId,
networkManagerConnectionName
FROM azure.network.management_group_network_manager_connections
WHERE managementGroupId = 'replace-me';