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

NameDatatypeDescription
idtextThe resource ID for the deleted configuration store.
nametextThe name of the configuration store.
configStoreNametextfield from the properties object
configuration_store_idtextfield from the properties object
deletion_datetextfield from the properties object
locationtextfield from the properties object
purge_protection_enabledtextfield from the properties object
scheduled_purge_datetextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextfield from the properties object
typetextThe resource type of the configuration store.

Methods

NameAccessible byRequired ParamsDescription
getSELECTconfigStoreName, location, subscriptionIdGets a deleted Azure app configuration store.
listSELECTsubscriptionIdGets information about the deleted configuration stores in a subscription.

SELECT examples

Gets information about the deleted configuration stores in a subscription.

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