vw_snapshots
Creates, updates, deletes, gets or lists a vw_snapshots
resource.
Overview
Name | vw_snapshots |
Type | View |
Id | azure.app_configuration.vw_snapshots |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.filters') as "filters",
JSON_EXTRACT(properties, '$.compositionType') as "composition_type",
JSON_EXTRACT(properties, '$.created') as "created",
JSON_EXTRACT(properties, '$.expires') as "expires",
JSON_EXTRACT(properties, '$.retentionPeriod') as "retention_period",
JSON_EXTRACT(properties, '$.size') as "size",
JSON_EXTRACT(properties, '$.itemsCount') as "items_count",
JSON_EXTRACT(properties, '$.tags') as "tags",
JSON_EXTRACT(properties, '$.etag') as "etag",
subscriptionId,
resourceGroupName,
configStoreName,
snapshotName
FROM azure.app_configuration.snapshots
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND configStoreName = 'replace-me' AND snapshotName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.filters') as "filters",
json_extract_path_text(properties, '$.compositionType') as "composition_type",
json_extract_path_text(properties, '$.created') as "created",
json_extract_path_text(properties, '$.expires') as "expires",
json_extract_path_text(properties, '$.retentionPeriod') as "retention_period",
json_extract_path_text(properties, '$.size') as "size",
json_extract_path_text(properties, '$.itemsCount') as "items_count",
json_extract_path_text(properties, '$.tags') as "tags",
json_extract_path_text(properties, '$.etag') as "etag",
subscriptionId,
resourceGroupName,
configStoreName,
snapshotName
FROM azure.app_configuration.snapshots
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND configStoreName = 'replace-me' AND snapshotName = 'replace-me';