Skip to main content

vw_snapshots

Creates, updates, deletes, gets or lists a vw_snapshots resource.

Overview

Namevw_snapshots
TypeView
Idazure.app_configuration.vw_snapshots

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

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';