vw_flighting_rings
Creates, updates, deletes, gets or lists a vw_flighting_rings
resource.
Overview
Name | vw_flighting_rings |
Type | View |
Id | azure_extras.test_base.vw_flighting_rings |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.actualFlightingRingName') as "actual_flighting_ring_name",
subscriptionId,
resourceGroupName,
testBaseAccountName,
flightingRingResourceName
FROM azure_extras.test_base.flighting_rings
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND testBaseAccountName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.actualFlightingRingName') as "actual_flighting_ring_name",
subscriptionId,
resourceGroupName,
testBaseAccountName,
flightingRingResourceName
FROM azure_extras.test_base.flighting_rings
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND testBaseAccountName = 'replace-me';