vw_virtual_networks
Creates, updates, deletes, gets or lists a vw_virtual_networks
resource.
Overview
Name | vw_virtual_networks |
Type | View |
Id | azure.system_center_vm_manager.vw_virtual_networks |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
JSON_EXTRACT(properties, '$.inventoryItemId') as "inventory_item_id",
JSON_EXTRACT(properties, '$.uuid') as "uuid",
JSON_EXTRACT(properties, '$.vmmServerId') as "vmm_server_id",
JSON_EXTRACT(properties, '$.networkName') as "network_name",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
virtualNetworkName
FROM azure.system_center_vm_manager.virtual_networks
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
json_extract_path_text(properties, '$.inventoryItemId') as "inventory_item_id",
json_extract_path_text(properties, '$.uuid') as "uuid",
json_extract_path_text(properties, '$.vmmServerId') as "vmm_server_id",
json_extract_path_text(properties, '$.networkName') as "network_name",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
virtualNetworkName
FROM azure.system_center_vm_manager.virtual_networks
WHERE subscriptionId = 'replace-me';