Skip to main content

configuration_stores_deleted

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

Overview

Nameconfiguration_stores_deleted
TypeResource
Idazure.app_configuration.configuration_stores_deleted

Fields

The following fields are returned by SELECT queries:

Retrieved information about the deleted configuration store.

NameDatatypeDescription
idstringThe resource ID for the deleted configuration store.
namestringThe name of the configuration store.
propertiesobjectProperties of the deleted configuration store
typestringThe resource type of the configuration store.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, location, configStoreNameGets a deleted Azure app configuration store.
listselectsubscriptionIdGets 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.

NameDatatypeDescription
configStoreNamestringThe name of the configuration store.
locationstringThe name of the Azure region.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

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
;