vw_express_route_ports_locations
Creates, updates, deletes, gets or lists a vw_express_route_ports_locations
resource.
Overview
Name | vw_express_route_ports_locations |
Type | View |
Id | azure.network.vw_express_route_ports_locations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.address') as "address",
JSON_EXTRACT(properties, '$.contact') as "contact",
JSON_EXTRACT(properties, '$.availableBandwidths') as "available_bandwidths",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
locationName
FROM azure.network.express_route_ports_locations
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.address') as "address",
json_extract_path_text(properties, '$.contact') as "contact",
json_extract_path_text(properties, '$.availableBandwidths') as "available_bandwidths",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
locationName
FROM azure.network.express_route_ports_locations
WHERE subscriptionId = 'replace-me';