vw_express_route_ports
Creates, updates, deletes, gets or lists a vw_express_route_ports
resource.
Overview
Name | vw_express_route_ports |
Type | View |
Id | azure.network.vw_express_route_ports |
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,
identity as identity,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.peeringLocation') as "peering_location",
JSON_EXTRACT(properties, '$.bandwidthInGbps') as "bandwidth_in_gbps",
JSON_EXTRACT(properties, '$.provisionedBandwidthInGbps') as "provisioned_bandwidth_in_gbps",
JSON_EXTRACT(properties, '$.mtu') as "mtu",
JSON_EXTRACT(properties, '$.encapsulation') as "encapsulation",
JSON_EXTRACT(properties, '$.etherType') as "ether_type",
JSON_EXTRACT(properties, '$.allocationDate') as "allocation_date",
JSON_EXTRACT(properties, '$.links') as "links",
JSON_EXTRACT(properties, '$.circuits') as "circuits",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.resourceGuid') as "resource_guid",
JSON_EXTRACT(properties, '$.billingType') as "billing_type",
subscriptionId,
resourceGroupName,
expressRoutePortName
FROM azure.network.express_route_ports
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
etag as etag,
identity as identity,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.peeringLocation') as "peering_location",
json_extract_path_text(properties, '$.bandwidthInGbps') as "bandwidth_in_gbps",
json_extract_path_text(properties, '$.provisionedBandwidthInGbps') as "provisioned_bandwidth_in_gbps",
json_extract_path_text(properties, '$.mtu') as "mtu",
json_extract_path_text(properties, '$.encapsulation') as "encapsulation",
json_extract_path_text(properties, '$.etherType') as "ether_type",
json_extract_path_text(properties, '$.allocationDate') as "allocation_date",
json_extract_path_text(properties, '$.links') as "links",
json_extract_path_text(properties, '$.circuits') as "circuits",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.resourceGuid') as "resource_guid",
json_extract_path_text(properties, '$.billingType') as "billing_type",
subscriptionId,
resourceGroupName,
expressRoutePortName
FROM azure.network.express_route_ports
WHERE subscriptionId = 'replace-me';