vw_first_party_apps
Creates, updates, deletes, gets or lists a vw_first_party_apps
resource.
Overview
Name | vw_first_party_apps |
Type | View |
Id | azure_extras.test_base.vw_first_party_apps |
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, '$.mediaType') as "media_type",
JSON_EXTRACT(properties, '$.architecture') as "architecture",
JSON_EXTRACT(properties, '$.channel') as "channel",
JSON_EXTRACT(properties, '$.ring') as "ring",
JSON_EXTRACT(properties, '$.supportedProducts') as "supported_products",
subscriptionId,
resourceGroupName,
testBaseAccountName,
firstPartyAppResourceName
FROM azure_extras.test_base.first_party_apps
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND testBaseAccountName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.mediaType') as "media_type",
json_extract_path_text(properties, '$.architecture') as "architecture",
json_extract_path_text(properties, '$.channel') as "channel",
json_extract_path_text(properties, '$.ring') as "ring",
json_extract_path_text(properties, '$.supportedProducts') as "supported_products",
subscriptionId,
resourceGroupName,
testBaseAccountName,
firstPartyAppResourceName
FROM azure_extras.test_base.first_party_apps
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND testBaseAccountName = 'replace-me';