vw_community_gallery_images
Creates, updates, deletes, gets or lists a vw_community_gallery_images
resource.
Overview
Name | vw_community_gallery_images |
Type | View |
Id | azure.compute.vw_community_gallery_images |
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, '$.osType') as "os_type",
JSON_EXTRACT(properties, '$.osState') as "os_state",
JSON_EXTRACT(properties, '$.endOfLifeDate') as "end_of_life_date",
JSON_EXTRACT(properties, '$.identifier') as "identifier",
JSON_EXTRACT(properties, '$.recommended') as "recommended",
JSON_EXTRACT(properties, '$.disallowed') as "disallowed",
JSON_EXTRACT(properties, '$.hyperVGeneration') as "hyper_v_generation",
JSON_EXTRACT(properties, '$.features') as "features",
JSON_EXTRACT(properties, '$.purchasePlan') as "purchase_plan",
JSON_EXTRACT(properties, '$.architecture') as "architecture",
JSON_EXTRACT(properties, '$.privacyStatementUri') as "privacy_statement_uri",
JSON_EXTRACT(properties, '$.eula') as "eula",
JSON_EXTRACT(properties, '$.disclaimer') as "disclaimer",
JSON_EXTRACT(properties, '$.artifactTags') as "artifact_tags",
subscriptionId,
location,
publicGalleryName,
galleryImageName
FROM azure.compute.community_gallery_images
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, '$.osType') as "os_type",
json_extract_path_text(properties, '$.osState') as "os_state",
json_extract_path_text(properties, '$.endOfLifeDate') as "end_of_life_date",
json_extract_path_text(properties, '$.identifier') as "identifier",
json_extract_path_text(properties, '$.recommended') as "recommended",
json_extract_path_text(properties, '$.disallowed') as "disallowed",
json_extract_path_text(properties, '$.hyperVGeneration') as "hyper_v_generation",
json_extract_path_text(properties, '$.features') as "features",
json_extract_path_text(properties, '$.purchasePlan') as "purchase_plan",
json_extract_path_text(properties, '$.architecture') as "architecture",
json_extract_path_text(properties, '$.privacyStatementUri') as "privacy_statement_uri",
json_extract_path_text(properties, '$.eula') as "eula",
json_extract_path_text(properties, '$.disclaimer') as "disclaimer",
json_extract_path_text(properties, '$.artifactTags') as "artifact_tags",
subscriptionId,
location,
publicGalleryName,
galleryImageName
FROM azure.compute.community_gallery_images
WHERE subscriptionId = 'replace-me' AND location = 'replace-me' AND publicGalleryName = 'replace-me';