vw_network_racks
Creates, updates, deletes, gets or lists a vw_network_racks
resource.
Overview
Name | vw_network_racks |
Type | View |
Id | azure.managed_network_fabric.vw_network_racks |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.annotation') as "annotation",
JSON_EXTRACT(properties, '$.networkRackType') as "network_rack_type",
JSON_EXTRACT(properties, '$.networkFabricId') as "network_fabric_id",
JSON_EXTRACT(properties, '$.networkDevices') as "network_devices",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
networkRackName
FROM azure.managed_network_fabric.network_racks
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.annotation') as "annotation",
json_extract_path_text(properties, '$.networkRackType') as "network_rack_type",
json_extract_path_text(properties, '$.networkFabricId') as "network_fabric_id",
json_extract_path_text(properties, '$.networkDevices') as "network_devices",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
networkRackName
FROM azure.managed_network_fabric.network_racks
WHERE subscriptionId = 'replace-me';