vw_configuration_stores_deleted
Creates, updates, deletes, gets or lists a vw_configuration_stores_deleted
resource.
Overview
Name | vw_configuration_stores_deleted |
Type | View |
Id | azure.app_configuration.vw_configuration_stores_deleted |
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, '$.configurationStoreId') as "configuration_store_id",
JSON_EXTRACT(properties, '$.location') as "location",
JSON_EXTRACT(properties, '$.deletionDate') as "deletion_date",
JSON_EXTRACT(properties, '$.scheduledPurgeDate') as "scheduled_purge_date",
JSON_EXTRACT(properties, '$.tags') as "tags",
JSON_EXTRACT(properties, '$.purgeProtectionEnabled') as "purge_protection_enabled",
subscriptionId,
location,
configStoreName
FROM azure.app_configuration.configuration_stores_deleted
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.configurationStoreId') as "configuration_store_id",
json_extract_path_text(properties, '$.location') as "location",
json_extract_path_text(properties, '$.deletionDate') as "deletion_date",
json_extract_path_text(properties, '$.scheduledPurgeDate') as "scheduled_purge_date",
json_extract_path_text(properties, '$.tags') as "tags",
json_extract_path_text(properties, '$.purgeProtectionEnabled') as "purge_protection_enabled",
subscriptionId,
location,
configStoreName
FROM azure.app_configuration.configuration_stores_deleted
WHERE subscriptionId = 'replace-me';