vw_express_route_connections
Creates, updates, deletes, gets or lists a vw_express_route_connections
resource.
Overview
Name | vw_express_route_connections |
Type | View |
Id | azure.network.vw_express_route_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,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.expressRouteCircuitPeering') as "express_route_circuit_peering",
JSON_EXTRACT(properties, '$.authorizationKey') as "authorization_key",
JSON_EXTRACT(properties, '$.routingWeight') as "routing_weight",
JSON_EXTRACT(properties, '$.enableInternetSecurity') as "enable_internet_security",
JSON_EXTRACT(properties, '$.expressRouteGatewayBypass') as "express_route_gateway_bypass",
JSON_EXTRACT(properties, '$.enablePrivateLinkFastPath') as "enable_private_link_fast_path",
JSON_EXTRACT(properties, '$.routingConfiguration') as "routing_configuration",
subscriptionId,
resourceGroupName,
expressRouteGatewayName,
connectionName
FROM azure.network.express_route_connections
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND expressRouteGatewayName = 'replace-me';
SELECT
id as id,
name as name,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.expressRouteCircuitPeering') as "express_route_circuit_peering",
json_extract_path_text(properties, '$.authorizationKey') as "authorization_key",
json_extract_path_text(properties, '$.routingWeight') as "routing_weight",
json_extract_path_text(properties, '$.enableInternetSecurity') as "enable_internet_security",
json_extract_path_text(properties, '$.expressRouteGatewayBypass') as "express_route_gateway_bypass",
json_extract_path_text(properties, '$.enablePrivateLinkFastPath') as "enable_private_link_fast_path",
json_extract_path_text(properties, '$.routingConfiguration') as "routing_configuration",
subscriptionId,
resourceGroupName,
expressRouteGatewayName,
connectionName
FROM azure.network.express_route_connections
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND expressRouteGatewayName = 'replace-me';