configuration_stores_deleted
Creates, updates, deletes, gets or lists a configuration_stores_deleted
resource.
Overview
Name | configuration_stores_deleted |
Type | Resource |
Id | azure.app_configuration.configuration_stores_deleted |
Fields
- vw_configuration_stores_deleted
- configuration_stores_deleted
Name | Datatype | Description |
---|---|---|
id | text | The resource ID for the deleted configuration store. |
name | text | The name of the configuration store. |
configStoreName | text | field from the properties object |
configuration_store_id | text | field from the properties object |
deletion_date | text | field from the properties object |
location | text | field from the properties object |
purge_protection_enabled | text | field from the properties object |
scheduled_purge_date | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | field from the properties object |
type | text | The resource type of the configuration store. |
Name | Datatype | Description |
---|---|---|
id | string | The resource ID for the deleted configuration store. |
name | string | The name of the configuration store. |
properties | object | Properties of the deleted configuration store. |
type | string | The resource type of the configuration store. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | configStoreName, location, subscriptionId | Gets a deleted Azure app configuration store. |
list | SELECT | subscriptionId | Gets information about the deleted configuration stores in a subscription. |
SELECT
examples
Gets information about the deleted configuration stores in a subscription.
- vw_configuration_stores_deleted
- configuration_stores_deleted
SELECT
id,
name,
configStoreName,
configuration_store_id,
deletion_date,
location,
purge_protection_enabled,
scheduled_purge_date,
subscriptionId,
tags,
type
FROM azure.app_configuration.vw_configuration_stores_deleted
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.app_configuration.configuration_stores_deleted
WHERE subscriptionId = '{{ subscriptionId }}';