vw_gallery_apps
Creates, updates, deletes, gets or lists a vw_gallery_apps
resource.
Overview
Name | vw_gallery_apps |
Type | View |
Id | azure_extras.test_base.vw_gallery_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, '$.applicationType') as "application_type",
JSON_EXTRACT(properties, '$.applicationId') as "application_id",
JSON_EXTRACT(properties, '$.applicationName') as "application_name",
JSON_EXTRACT(properties, '$.popularity') as "popularity",
subscriptionId,
resourceGroupName,
testBaseAccountName,
galleryAppName
FROM azure_extras.test_base.gallery_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, '$.applicationType') as "application_type",
json_extract_path_text(properties, '$.applicationId') as "application_id",
json_extract_path_text(properties, '$.applicationName') as "application_name",
json_extract_path_text(properties, '$.popularity') as "popularity",
subscriptionId,
resourceGroupName,
testBaseAccountName,
galleryAppName
FROM azure_extras.test_base.gallery_apps
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND testBaseAccountName = 'replace-me';