vw_connectivity_configurations
Creates, updates, deletes, gets or lists a vw_connectivity_configurations
resource.
Overview
Name | vw_connectivity_configurations |
Type | View |
Id | azure.network.vw_connectivity_configurations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
etag as etag,
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.connectivityTopology') as "connectivity_topology",
JSON_EXTRACT(properties, '$.hubs') as "hubs",
JSON_EXTRACT(properties, '$.isGlobal') as "is_global",
JSON_EXTRACT(properties, '$.appliesToGroups') as "applies_to_groups",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.deleteExistingPeering') as "delete_existing_peering",
JSON_EXTRACT(properties, '$.resourceGuid') as "resource_guid",
subscriptionId,
resourceGroupName,
networkManagerName,
configurationName
FROM azure.network.connectivity_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND networkManagerName = 'replace-me';
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
etag as etag,
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.connectivityTopology') as "connectivity_topology",
json_extract_path_text(properties, '$.hubs') as "hubs",
json_extract_path_text(properties, '$.isGlobal') as "is_global",
json_extract_path_text(properties, '$.appliesToGroups') as "applies_to_groups",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.deleteExistingPeering') as "delete_existing_peering",
json_extract_path_text(properties, '$.resourceGuid') as "resource_guid",
subscriptionId,
resourceGroupName,
networkManagerName,
configurationName
FROM azure.network.connectivity_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND networkManagerName = 'replace-me';