vw_galleries
Creates, updates, deletes, gets or lists a vw_galleries
resource.
Overview
Name | vw_galleries |
Type | View |
Id | azure.compute.vw_galleries |
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, '$.identifier') as "identifier",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.sharingProfile') as "sharing_profile",
JSON_EXTRACT(properties, '$.softDeletePolicy') as "soft_delete_policy",
JSON_EXTRACT(properties, '$.sharingStatus') as "sharing_status",
subscriptionId,
resourceGroupName,
galleryName
FROM azure.compute.galleries
WHERE subscriptionId = '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, '$.identifier') as "identifier",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.sharingProfile') as "sharing_profile",
json_extract_path_text(properties, '$.softDeletePolicy') as "soft_delete_policy",
json_extract_path_text(properties, '$.sharingStatus') as "sharing_status",
subscriptionId,
resourceGroupName,
galleryName
FROM azure.compute.galleries
WHERE subscriptionId = 'replace-me';