AppConfigurationStore
Represents Azure App Configuration Stores.
Labels: :ArmResource:AppConfigurationStore
Properties:
id- Resource ID (primary key)creationDate- Creation dateendpoint- Configuration store endpointdisableLocalAuth- Whether local authentication is disabledenablePurgeProtection- Whether purge protection is enabledsoftDeleteRetentionInDays- Soft delete retention period in daysdefaultKeyValueRevisionRetentionPeriodInSeconds- Default key-value revision retention period in seconds
Examples
// Find App Configuration stores with local auth enabled
MATCH (ac:AppConfigurationStore)
WHERE ac.disableLocalAuth = false OR ac.disableLocalAuth IS NULL
RETURN ac.name, ac.endpoint