vw_community_gallery_image_versions
Creates, updates, deletes, gets or lists a vw_community_gallery_image_versions
resource.
Overview
Name | vw_community_gallery_image_versions |
Type | View |
Id | azure.compute.vw_community_gallery_image_versions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
name as name,
location as location,
type as type,
identifier as identifier,
JSON_EXTRACT(properties, '$.publishedDate') as "published_date",
JSON_EXTRACT(properties, '$.endOfLifeDate') as "end_of_life_date",
JSON_EXTRACT(properties, '$.excludeFromLatest') as "exclude_from_latest",
JSON_EXTRACT(properties, '$.storageProfile') as "storage_profile",
JSON_EXTRACT(properties, '$.disclaimer') as "disclaimer",
JSON_EXTRACT(properties, '$.artifactTags') as "artifact_tags",
subscriptionId,
location,
publicGalleryName,
galleryImageName,
galleryImageVersionName
FROM azure.compute.community_gallery_image_versions
WHERE subscriptionId = 'replace-me' AND location = 'replace-me' AND publicGalleryName = 'replace-me' AND galleryImageName = 'replace-me';
SELECT
name as name,
location as location,
type as type,
identifier as identifier,
json_extract_path_text(properties, '$.publishedDate') as "published_date",
json_extract_path_text(properties, '$.endOfLifeDate') as "end_of_life_date",
json_extract_path_text(properties, '$.excludeFromLatest') as "exclude_from_latest",
json_extract_path_text(properties, '$.storageProfile') as "storage_profile",
json_extract_path_text(properties, '$.disclaimer') as "disclaimer",
json_extract_path_text(properties, '$.artifactTags') as "artifact_tags",
subscriptionId,
location,
publicGalleryName,
galleryImageName,
galleryImageVersionName
FROM azure.compute.community_gallery_image_versions
WHERE subscriptionId = 'replace-me' AND location = 'replace-me' AND publicGalleryName = 'replace-me' AND galleryImageName = 'replace-me';