vw_community_galleries
Creates, updates, deletes, gets or lists a vw_community_galleries
resource.
Overview
Name | vw_community_galleries |
Type | View |
Id | azure.compute.vw_community_galleries |
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, '$.disclaimer') as "disclaimer",
JSON_EXTRACT(properties, '$.artifactTags') as "artifact_tags",
JSON_EXTRACT(properties, '$.communityMetadata') as "community_metadata",
subscriptionId,
location,
publicGalleryName
FROM azure.compute.community_galleries
WHERE subscriptionId = 'replace-me' AND location = 'replace-me' AND publicGalleryName = 'replace-me';
SELECT
name as name,
location as location,
type as type,
identifier as identifier,
json_extract_path_text(properties, '$.disclaimer') as "disclaimer",
json_extract_path_text(properties, '$.artifactTags') as "artifact_tags",
json_extract_path_text(properties, '$.communityMetadata') as "community_metadata",
subscriptionId,
location,
publicGalleryName
FROM azure.compute.community_galleries
WHERE subscriptionId = 'replace-me' AND location = 'replace-me' AND publicGalleryName = 'replace-me';