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
The following fields are returned by SELECT
queries:
- get
- list
Retrieved information about the deleted 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. |
Retrieved information about all deleted configuration stores in a subscription.
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , location , configStoreName | Gets a deleted Azure app configuration store. | |
list | select | subscriptionId | Gets information about the deleted configuration stores in a subscription. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
configStoreName | string | The name of the configuration store. |
location | string | The name of the Azure region. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list
Gets a deleted Azure app configuration store.
SELECT
id,
name,
properties,
type
FROM azure.app_configuration.configuration_stores_deleted
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND configStoreName = '{{ configStoreName }}' -- required
;
Gets information about the deleted configuration stores in a subscription.
SELECT
id,
name,
properties,
type
FROM azure.app_configuration.configuration_stores_deleted
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;