vw_gallery_application_versions
Creates, updates, deletes, gets or lists a vw_gallery_application_versions
resource.
Overview
Name | vw_gallery_application_versions |
Type | View |
Id | azure.compute.vw_gallery_application_versions |
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,
tags as tags,
JSON_EXTRACT(properties, '$.publishingProfile') as "publishing_profile",
JSON_EXTRACT(properties, '$.safetyProfile') as "safety_profile",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.replicationStatus') as "replication_status",
subscriptionId,
resourceGroupName,
galleryName,
galleryApplicationName,
galleryApplicationVersionName
FROM azure.compute.gallery_application_versions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND galleryName = 'replace-me' AND galleryApplicationName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.publishingProfile') as "publishing_profile",
json_extract_path_text(properties, '$.safetyProfile') as "safety_profile",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.replicationStatus') as "replication_status",
subscriptionId,
resourceGroupName,
galleryName,
galleryApplicationName,
galleryApplicationVersionName
FROM azure.compute.gallery_application_versions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND galleryName = 'replace-me' AND galleryApplicationName = 'replace-me';