vw_extended_zones
Creates, updates, deletes, gets or lists a vw_extended_zones
resource.
Overview
Name | vw_extended_zones |
Type | View |
Id | azure.edge_zones.vw_extended_zones |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.registrationState') as "registration_state",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.regionalDisplayName') as "regional_display_name",
JSON_EXTRACT(properties, '$.regionType') as "region_type",
JSON_EXTRACT(properties, '$.regionCategory') as "region_category",
JSON_EXTRACT(properties, '$.geography') as "geography",
JSON_EXTRACT(properties, '$.geographyGroup') as "geography_group",
JSON_EXTRACT(properties, '$.longitude') as "longitude",
JSON_EXTRACT(properties, '$.latitude') as "latitude",
JSON_EXTRACT(properties, '$.homeLocation') as "home_location",
subscriptionId,
extendedZoneName
FROM azure.edge_zones.extended_zones
WHERE subscriptionId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.registrationState') as "registration_state",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.regionalDisplayName') as "regional_display_name",
json_extract_path_text(properties, '$.regionType') as "region_type",
json_extract_path_text(properties, '$.regionCategory') as "region_category",
json_extract_path_text(properties, '$.geography') as "geography",
json_extract_path_text(properties, '$.geographyGroup') as "geography_group",
json_extract_path_text(properties, '$.longitude') as "longitude",
json_extract_path_text(properties, '$.latitude') as "latitude",
json_extract_path_text(properties, '$.homeLocation') as "home_location",
subscriptionId,
extendedZoneName
FROM azure.edge_zones.extended_zones
WHERE subscriptionId = 'replace-me';