vw_express_route_links
Creates, updates, deletes, gets or lists a vw_express_route_links
resource.
Overview
Name | vw_express_route_links |
Type | View |
Id | azure.network.vw_express_route_links |
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,
JSON_EXTRACT(properties, '$.routerName') as "router_name",
JSON_EXTRACT(properties, '$.interfaceName') as "interface_name",
JSON_EXTRACT(properties, '$.patchPanelId') as "patch_panel_id",
JSON_EXTRACT(properties, '$.rackId') as "rack_id",
JSON_EXTRACT(properties, '$.coloLocation') as "colo_location",
JSON_EXTRACT(properties, '$.connectorType') as "connector_type",
JSON_EXTRACT(properties, '$.adminState') as "admin_state",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.macSecConfig') as "mac_sec_config",
subscriptionId,
resourceGroupName,
expressRoutePortName,
linkName
FROM azure.network.express_route_links
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND expressRoutePortName = 'replace-me';
SELECT
id as id,
name as name,
etag as etag,
json_extract_path_text(properties, '$.routerName') as "router_name",
json_extract_path_text(properties, '$.interfaceName') as "interface_name",
json_extract_path_text(properties, '$.patchPanelId') as "patch_panel_id",
json_extract_path_text(properties, '$.rackId') as "rack_id",
json_extract_path_text(properties, '$.coloLocation') as "colo_location",
json_extract_path_text(properties, '$.connectorType') as "connector_type",
json_extract_path_text(properties, '$.adminState') as "admin_state",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.macSecConfig') as "mac_sec_config",
subscriptionId,
resourceGroupName,
expressRoutePortName,
linkName
FROM azure.network.express_route_links
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND expressRoutePortName = 'replace-me';