vw_gallery_images
Creates, updates, deletes, gets or lists a vw_gallery_images
resource.
Overview
Name | vw_gallery_images |
Type | View |
Id | azure.compute.vw_gallery_images |
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, '$.description') as "description",
JSON_EXTRACT(properties, '$.eula') as "eula",
JSON_EXTRACT(properties, '$.privacyStatementUri') as "privacy_statement_uri",
JSON_EXTRACT(properties, '$.releaseNoteUri') as "release_note_uri",
JSON_EXTRACT(properties, '$.osType') as "os_type",
JSON_EXTRACT(properties, '$.osState') as "os_state",
JSON_EXTRACT(properties, '$.hyperVGeneration') as "hyper_v_generation",
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, '$.purchasePlan') as "purchase_plan",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.features') as "features",
JSON_EXTRACT(properties, '$.architecture') as "architecture",
subscriptionId,
resourceGroupName,
galleryName,
galleryImageName
FROM azure.compute.gallery_images
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND galleryName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.eula') as "eula",
json_extract_path_text(properties, '$.privacyStatementUri') as "privacy_statement_uri",
json_extract_path_text(properties, '$.releaseNoteUri') as "release_note_uri",
json_extract_path_text(properties, '$.osType') as "os_type",
json_extract_path_text(properties, '$.osState') as "os_state",
json_extract_path_text(properties, '$.hyperVGeneration') as "hyper_v_generation",
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, '$.purchasePlan') as "purchase_plan",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.features') as "features",
json_extract_path_text(properties, '$.architecture') as "architecture",
subscriptionId,
resourceGroupName,
galleryName,
galleryImageName
FROM azure.compute.gallery_images
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND galleryName = 'replace-me';