vw_express_route_cross_connections
Creates, updates, deletes, gets or lists a vw_express_route_cross_connections
resource.
Overview
Name | vw_express_route_cross_connections |
Type | View |
Id | azure.network.vw_express_route_cross_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,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.primaryAzurePort') as "primary_azure_port",
JSON_EXTRACT(properties, '$.secondaryAzurePort') as "secondary_azure_port",
JSON_EXTRACT(properties, '$.sTag') as "s_tag",
JSON_EXTRACT(properties, '$.peeringLocation') as "peering_location",
JSON_EXTRACT(properties, '$.bandwidthInMbps') as "bandwidth_in_mbps",
JSON_EXTRACT(properties, '$.expressRouteCircuit') as "express_route_circuit",
JSON_EXTRACT(properties, '$.serviceProviderProvisioningState') as "service_provider_provisioning_state",
JSON_EXTRACT(properties, '$.serviceProviderNotes') as "service_provider_notes",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.peerings') as "peerings",
subscriptionId,
resourceGroupName,
crossConnectionName
FROM azure.network.express_route_cross_connections
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
etag as etag,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.primaryAzurePort') as "primary_azure_port",
json_extract_path_text(properties, '$.secondaryAzurePort') as "secondary_azure_port",
json_extract_path_text(properties, '$.sTag') as "s_tag",
json_extract_path_text(properties, '$.peeringLocation') as "peering_location",
json_extract_path_text(properties, '$.bandwidthInMbps') as "bandwidth_in_mbps",
json_extract_path_text(properties, '$.expressRouteCircuit') as "express_route_circuit",
json_extract_path_text(properties, '$.serviceProviderProvisioningState') as "service_provider_provisioning_state",
json_extract_path_text(properties, '$.serviceProviderNotes') as "service_provider_notes",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.peerings') as "peerings",
subscriptionId,
resourceGroupName,
crossConnectionName
FROM azure.network.express_route_cross_connections
WHERE subscriptionId = 'replace-me';