vw_gallery_applications
Creates, updates, deletes, gets or lists a vw_gallery_applications
resource.
Overview
Name | vw_gallery_applications |
Type | View |
Id | azure.compute.vw_gallery_applications |
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, '$.endOfLifeDate') as "end_of_life_date",
JSON_EXTRACT(properties, '$.supportedOSType') as "supported_os_type",
JSON_EXTRACT(properties, '$.customActions') as "custom_actions",
subscriptionId,
resourceGroupName,
galleryName,
galleryApplicationName
FROM azure.compute.gallery_applications
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, '$.endOfLifeDate') as "end_of_life_date",
json_extract_path_text(properties, '$.supportedOSType') as "supported_os_type",
json_extract_path_text(properties, '$.customActions') as "custom_actions",
subscriptionId,
resourceGroupName,
galleryName,
galleryApplicationName
FROM azure.compute.gallery_applications
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND galleryName = 'replace-me';