vw_peerings
Creates, updates, deletes, gets or lists a vw_peerings
resource.
Overview
Name | vw_peerings |
Type | View |
Id | azure.peering.vw_peerings |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
sku as sku,
kind as kind,
tags as tags,
JSON_EXTRACT(properties, '$.direct') as "direct",
JSON_EXTRACT(properties, '$.exchange') as "exchange",
JSON_EXTRACT(properties, '$.peeringLocation') as "peering_location",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
peeringName
FROM azure.peering.peerings
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
sku as sku,
kind as kind,
tags as tags,
json_extract_path_text(properties, '$.direct') as "direct",
json_extract_path_text(properties, '$.exchange') as "exchange",
json_extract_path_text(properties, '$.peeringLocation') as "peering_location",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
peeringName
FROM azure.peering.peerings
WHERE subscriptionId = 'replace-me';