diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/_constants.py b/src/azure-cli/azure/cli/command_modules/appconfig/_constants.py index 2cc04f5739f..809a41c84aa 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/_constants.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/_constants.py @@ -144,6 +144,7 @@ class CompareFields: CompareFieldsMap = { "appconfig": (CompareFields.CONTENT_TYPE, CompareFields.VALUE, CompareFields.TAGS), "appservice": (CompareFields.VALUE, CompareFields.TAGS), + "aks": (CompareFields.CONTENT_TYPE, CompareFields.VALUE, CompareFields.TAGS), "file": (CompareFields.CONTENT_TYPE, CompareFields.VALUE), "kvset": (CompareFields.CONTENT_TYPE, CompareFields.VALUE, CompareFields.TAGS), "restore": (CompareFields.VALUE, CompareFields.CONTENT_TYPE, CompareFields.LOCKED, CompareFields.TAGS) diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/_diff_utils.py b/src/azure-cli/azure/cli/command_modules/appconfig/_diff_utils.py index df70a25a360..b8d5dee9317 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/_diff_utils.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/_diff_utils.py @@ -141,7 +141,7 @@ def get_serializer(level): ''' Helper method that returns a serializer method called in formatting a string representation of a key-value. ''' - source_modes = ("appconfig", "appservice", "file") + source_modes = ("appconfig", "appservice", "file", "aks") kvset_modes = ("kvset", "restore") if level not in source_modes and level not in kvset_modes: diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/_kv_import_helpers.py b/src/azure-cli/azure/cli/command_modules/appconfig/_kv_import_helpers.py index f47ecc3b259..1331048170a 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/_kv_import_helpers.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/_kv_import_helpers.py @@ -22,6 +22,7 @@ from azure.cli.core.util import user_confirmation from azure.cli.core.azclierror import ( AzureInternalError, + AzureResponseError, FileOperationError, InvalidArgumentValueError, RequiredArgumentMissingError, @@ -550,7 +551,40 @@ def __read_kv_from_file( except OSError: raise FileOperationError("File is not available.") + flattened_data = __flatten_config_data( + config_data=config_data, + format_=format_, + content_type=content_type, + prefix_to_add=prefix_to_add, + depth=depth, + separator=separator + ) + + # convert to KeyValue list + key_values = [] + for k, v in flattened_data.items(): + if validate_import_key(key=k): + key_values.append(KeyValue(key=k, value=v)) + return key_values + + +def __flatten_config_data(config_data, format_, content_type, prefix_to_add="", depth=None, separator=None): + """ + Flatten configuration data into a dictionary of key-value pairs. + + Args: + config_data: The configuration data to flatten (dict or list) + format_ (str): The format of the configuration data ('json', 'yaml', 'properties') + content_type (str): Content type for JSON validation + prefix_to_add (str): Prefix to add to each key + depth (int): Maximum depth for flattening hierarchical data + separator (str): Separator for hierarchical keys + + Returns: + dict: Flattened key-value pairs + """ flattened_data = {} + if format_ == "json" and content_type and is_json_content_type(content_type): for key in config_data: __flatten_json_key_value( @@ -582,13 +616,7 @@ def __read_kv_from_file( separator=separator, ) - # convert to KeyValue list - key_values = [] - for k, v in flattened_data.items(): - if validate_import_key(key=k): - key_values.append(KeyValue(key=k, value=v)) - return key_values - + return flattened_data # App Service <-> List of KeyValue object @@ -715,6 +743,170 @@ def __read_kv_from_app_service( raise CLIError("Failed to read key-values from appservice.\n" + str(exception)) +def __read_kv_from_kubernetes_configmap( + cmd, + aks_cluster, + configmap_name, + format_, + namespace="default", + prefix_to_add="", + content_type=None, + depth=None, + separator=None +): + """ + Read key-value pairs from a Kubernetes ConfigMap using aks_runcommand. + + Args: + cmd: The command context object + aks_cluster (str): Name of the AKS cluster + configmap_name (str): Name of the ConfigMap to read from + format_ (str): Format of the data in the ConfigMap (e.g., "json", "yaml") + namespace (str): Kubernetes namespace where the ConfigMap resides (default: "default") + prefix_to_add (str): Prefix to add to each key in the ConfigMap + content_type (str): Content type to apply to the key-values + depth (int): Maximum depth for flattening hierarchical data + separator (str): Separator for hierarchical keys + + Returns: + list: List of KeyValue objects + """ + key_values = [] + from azure.cli.command_modules.acs.custom import aks_runcommand + from azure.cli.command_modules.acs._client_factory import cf_managed_clusters + + # Preserve only the necessary CLI context data + original_subscription = cmd.cli_ctx.data.get('subscription_id') + original_safe_params = cmd.cli_ctx.data.get('safe_params', []) + + try: + # Temporarily modify the CLI context + cmd.cli_ctx.data['subscription_id'] = aks_cluster["subscription"] + params_to_keep = ["--debug", "--verbose"] + cmd.cli_ctx.data['safe_params'] = [p for p in original_safe_params if p in params_to_keep] + # It must be set to return the result. + cmd.cli_ctx.data['safe_params'].append("--output") + # Get the AKS client from the factory + aks_client = cf_managed_clusters(cmd.cli_ctx) + + # Command to get the ConfigMap and output it as JSON + command = f"kubectl get configmap {configmap_name} -n {namespace} -o json" + + # Execute the command on the cluster + result = aks_runcommand(cmd, aks_client, aks_cluster["resource_group"], aks_cluster["name"], command_string=command) + + if hasattr(result, 'logs') and result.logs: + if not hasattr(result, 'exit_code') or result.exit_code == 0: + try: + configmap_data = json.loads(result.logs) + + # Extract the data section which contains the key-value pairs + kvs = __extract_kv_from_configmap_data( + configmap_data, content_type, prefix_to_add, format_, depth, separator) + + key_values.extend(kvs) + except json.JSONDecodeError: + raise ValueError( + f"The result from ConfigMap {configmap_name} could not be parsed. {result.logs.strip()}" + ) + else: + raise AzureResponseError(f"{result.logs.strip()}") + else: + raise AzureResponseError("Unable to get the ConfigMap.") + + return key_values + except Exception as exception: + raise AzureInternalError( + f"Failed to read key-values from ConfigMap '{configmap_name}' in namespace '{namespace}'.\n{str(exception)}" + ) + finally: + # Restore original CLI context data + cmd.cli_ctx.data['subscription_id'] = original_subscription + cmd.cli_ctx.data['safe_params'] = original_safe_params + + +def __extract_kv_from_configmap_data(configmap, content_type, prefix_to_add="", format_=None, depth=None, separator=None): + """ + Helper function to extract key-value pairs from ConfigMap data. + + Args: + configmap (dict): The ConfigMap data as a dictionary + prefix_to_add (str): Prefix to add to each key + content_type (str): Content type to apply to the key-values + format_ (str): Format of the data in the ConfigMap (e.g., "json", "yaml") + depth (int): Maximum depth for flattening hierarchical data + separator (str): Separator for hierarchical keys + + Returns: + list: List of KeyValue objects + """ + key_values = [] + + if not configmap.get('data', None): + logger.warning("ConfigMap exists but has no data") + return key_values + + for key, value in configmap['data'].items(): + if format_ in ("json", "yaml", "properties"): + if format_ == "json": + try: + value = json.loads(value) + except json.JSONDecodeError: + logger.warning( + 'Value "%s" for key "%s" is not a well formatted JSON data.', + value, key + ) + continue + elif format_ == "yaml": + try: + value = yaml.safe_load(value) + except yaml.YAMLError: + logger.warning( + 'Value "%s" for key "%s" is not a well formatted YAML data.', + value, key + ) + continue + else: + try: + value = javaproperties.load(io.StringIO(value)) + except javaproperties.InvalidUEscapeError: + logger.warning( + 'Value "%s" for key "%s" is not a well formatted properties data.', + value, key + ) + continue + + flattened_data = __flatten_config_data( + config_data=value, + format_=format_, + content_type=content_type, + prefix_to_add=prefix_to_add, + depth=depth, + separator=separator + ) + + for k, v in flattened_data.items(): + if validate_import_key(key=k): + key_values.append(KeyValue(key=k, value=v)) + + elif validate_import_key(key): + # If content_type is JSON, validate the value + if content_type and is_json_content_type(content_type): + try: + json.loads(value) + except json.JSONDecodeError: + logger.warning( + 'Value "%s" for key "%s" is not a valid JSON object, which conflicts with the provided content type "%s".', + value, key, content_type + ) + continue + + kv = KeyValue(key=prefix_to_add + key, value=value) + key_values.append(kv) + + return key_values + + def __validate_import_keyvault_ref(kv): if kv and validate_import_key(kv.key): try: diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/_params.py b/src/azure-cli/azure/cli/command_modules/appconfig/_params.py index 9102d60aadc..223b71a925a 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/_params.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/_params.py @@ -16,7 +16,8 @@ get_default_location_from_resource_group from ._constants import ImportExportProfiles, ImportMode, FeatureFlagConstants, ARMAuthenticationMode -from ._validators import (validate_appservice_name_or_id, validate_sku, validate_snapshot_query_fields, +from ._validators import (validate_appservice_name_or_id, validate_aks_cluster_name_or_id, + validate_sku, validate_snapshot_query_fields, validate_connection_string, validate_datetime, validate_export, validate_import, validate_import_depth, validate_query_fields, @@ -232,7 +233,7 @@ def load_arguments(self, _): c.argument('label', help="Imported KVs and feature flags will be assigned with this label. If no label specified, will assign null label.") c.argument('tags', nargs="*", help="Imported KVs and feature flags will be assigned with these tags. If no tags are specified, imported KVs and feature flags will retain existing tags. Support space-separated tags: key[=value] [key[=value] ...]. Use "" to clear existing tags.") c.argument('prefix', help="This prefix will be appended to the front of imported keys. Prefix will be ignored for feature flags.") - c.argument('source', options_list=['--source', '-s'], arg_type=get_enum_type(['file', 'appconfig', 'appservice']), validator=validate_import, help="The source of importing. Note that importing feature flags from appservice is not supported.") + c.argument('source', options_list=['--source', '-s'], arg_type=get_enum_type(['file', 'appconfig', 'appservice', 'aks']), validator=validate_import, help="The source of importing. Note that importing feature flags from appservice is not supported.") c.argument('yes', help="Do not prompt for preview.") c.argument('skip_features', help="Import only key values and exclude all feature flags. By default, all feature flags will be imported from file or appconfig. Not applicable for appservice.", arg_type=get_three_state_flag()) c.argument('content_type', help='Content type of all imported items.') @@ -264,6 +265,11 @@ def load_arguments(self, _): with self.argument_context('appconfig kv import', arg_group='AppService') as c: c.argument('appservice_account', validator=validate_appservice_name_or_id, help='ARM ID for AppService OR the name of the AppService, assuming it is in the same subscription and resource group as the App Configuration store. Required for AppService arguments') + with self.argument_context('appconfig kv import', arg_group='AKS') as c: + c.argument('aks_cluster', validator=validate_aks_cluster_name_or_id, help='ARM ID for AKS OR the name of the AKS, assuming it is in the same subscription and resource group as the App Configuration store. Required for AKS arguments') + c.argument('configmap_name', help='Name of the ConfigMap. Required for AKS arguments.') + c.argument('configmap_namespace', help='Namespace of the ConfigMap. default to "default" namespace if not specified.') + with self.argument_context('appconfig kv export') as c: c.argument('label', help="Only keys and feature flags with this label will be exported. If no label specified, export keys and feature flags with null label by default. When export destination is appconfig, or when export destination is file with `appconfig/kvset` profile, this argument supports asterisk and comma signs for label filtering, for instance, * means all labels, abc* means labels with abc as prefix, and abc,xyz means labels with abc or xyz.") c.argument('prefix', help="Prefix to be trimmed from keys. Prefix will be ignored for feature flags.") diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/_validators.py b/src/azure-cli/azure/cli/command_modules/appconfig/_validators.py index 42de127338f..447662db65e 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/_validators.py @@ -105,6 +105,11 @@ def validate_import(namespace): elif source == 'appservice': if namespace.appservice_account is None: raise RequiredArgumentMissingError("Please provide '--appservice-account' argument") + elif source == 'aks': + if namespace.aks_cluster is None: + raise RequiredArgumentMissingError("Please provide '--aks-cluster' argument") + if namespace.configmap_name is None: + raise RequiredArgumentMissingError("Please provide '--configmap-name' argument") def validate_export(namespace): @@ -145,6 +150,29 @@ def validate_appservice_name_or_id(cmd, namespace): namespace.appservice_account = parse_resource_id(namespace.appservice_account) +def validate_aks_cluster_name_or_id(cmd, namespace): + from azure.cli.core.commands.client_factory import get_subscription_id + from azure.mgmt.core.tools import is_valid_resource_id, parse_resource_id + if namespace.aks_cluster: + if not is_valid_resource_id(namespace.aks_cluster): + config_store_name = "" + if namespace.name: + config_store_name = namespace.name + elif namespace.connection_string: + config_store_name = get_store_name_from_connection_string(namespace.connection_string) + else: + raise ArgumentUsageError("Please provide App Configuration name or connection string for fetching the AKS cluster details. Alternatively, you can provide a valid ARM ID for the AKS cluster.") + + resource_group, _ = resolve_store_metadata(cmd, config_store_name) + namespace.aks_cluster = { + "subscription": get_subscription_id(cmd.cli_ctx), + "resource_group": resource_group, + "name": namespace.aks_cluster + } + else: + namespace.aks_cluster = parse_resource_id(namespace.aks_cluster) + + def validate_query_fields(namespace): if namespace.fields: fields = [] diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/keyvalue.py b/src/azure-cli/azure/cli/command_modules/appconfig/keyvalue.py index 8870d3b7b91..0941c364b88 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/keyvalue.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/keyvalue.py @@ -30,6 +30,7 @@ __delete_configuration_setting_from_config_store, __read_features_from_file, __read_kv_from_app_service, + __read_kv_from_kubernetes_configmap, __read_kv_from_file, ) from knack.log import get_logger @@ -92,7 +93,11 @@ def import_config(cmd, src_endpoint=None, src_tags=None, # tags to filter # from-appservice parameters - appservice_account=None): + appservice_account=None, + # from-aks parameters + aks_cluster=None, + configmap_namespace="default", + configmap_name=None): src_features = [] dest_features = [] @@ -176,6 +181,25 @@ def import_config(cmd, src_kvs = __read_kv_from_app_service( cmd, appservice_account=appservice_account, prefix_to_add=prefix, content_type=content_type) + elif source == 'aks': + if separator: + # If separator is provided, use max depth by default unless depth is specified. + depth = sys.maxsize if depth is None else int(depth) + else: + if depth and int(depth) != 1: + logger.warning("Cannot flatten hierarchical data without a separator. --depth argument will be ignored.") + depth = 1 + + src_kvs = __read_kv_from_kubernetes_configmap(cmd, + aks_cluster=aks_cluster, + configmap_name=configmap_name, + namespace=configmap_namespace, + prefix_to_add=prefix, + content_type=content_type, + format_=format_, + separator=separator, + depth=depth) + if strict or not yes or import_mode == ImportMode.IGNORE_MATCH: # fetch key values from user's configstore dest_kvs = __read_kv_from_config_store(azconfig_client, diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/recordings/test_appconfig_import_from_kubernetes_configmap.yaml b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/recordings/test_appconfig_import_from_kubernetes_configmap.yaml new file mode 100644 index 00000000000..c11abbf04e9 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/recordings/test_appconfig_import_from_kubernetes_configmap.yaml @@ -0,0 +1,34627 @@ +interactions: +- request: + body: '{"location": "westus2", "sku": {"name": "Standard"}, "properties": {"softDeleteRetentionInDays": + 1, "dataPlaneProxy": {}, "createMode": "Default"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig create + Connection: + - keep-alive + Content-Length: + - '147' + Content-Type: + - application/json + ParameterSetName: + - -n -g -l --sku --retention-days + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/ConfigMapImportTest000002?api-version=2024-06-01 + response: + body: + string: '{"type": "Microsoft.AppConfiguration/configurationStores", "location": + "westus2", "properties": {"provisioningState": "Creating", "creationDate": + "2025-08-15T03:11:28.9779918+00:00", "endpoint": null, "encryption": null, + "privateEndpointConnections": null, "disableLocalAuth": null, "softDeleteRetentionInDays": + null, "defaultKeyValueRevisionRetentionPeriodInSeconds": null, "enablePurgeProtection": + null, "dataPlaneProxy": null}, "sku": {"name": "Standard"}, "systemData": + null, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/ConfigMapImportTest000002", + "name": "ConfigMapImportTest000002", "tags": {}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss?api-version=2024-06-01&t=638908242893278130&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=PtaRls-tl8egcRDakPMxBhZ3hB4SBAt8PVDwY1mWKVhwY6UO6ogNv3nZSvD5BdjmdGirNmZYnGW_TOuIJcyu8qjsW2GVsJOp0zpAkoFNQ6XzknRx8Mv7zhRTVyIvF1aUuF7e4SD0jwP8rCu5XSsEYKLHmXcKxLEnzhL45Px3uiYZk2HcAXqxKinW3Zw2FkqZB38IoRmZZA3k4eHRsdDmjQIWHVll4OsR6RXp3EkTftm3tSlEEleBc9YiZsl1Oe2E1eArPxoiHIkphRbvB0Bj9dLAAbdvzUpvxLkd1M-roT2IFbnBIGTJSXqPiRgoRJKF9RXQ1s0Bgn1Gmor3y1Canw&h=Xjk7UWvb11bAEyCyIjtORLBvI7x8xtGIrpPy4JbEHwc + cache-control: + - no-cache + content-length: + - '705' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:11:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/e7c824af-1c54-4792-be13-c2a2a561d2c0 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 42E4EE884BD84819B04E2FCEE63E2F96 Ref B: MAA201060514019 Ref C: 2025-08-15T03:11:23Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku --retention-days + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss?api-version=2024-06-01&t=638908242893278130&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=PtaRls-tl8egcRDakPMxBhZ3hB4SBAt8PVDwY1mWKVhwY6UO6ogNv3nZSvD5BdjmdGirNmZYnGW_TOuIJcyu8qjsW2GVsJOp0zpAkoFNQ6XzknRx8Mv7zhRTVyIvF1aUuF7e4SD0jwP8rCu5XSsEYKLHmXcKxLEnzhL45Px3uiYZk2HcAXqxKinW3Zw2FkqZB38IoRmZZA3k4eHRsdDmjQIWHVll4OsR6RXp3EkTftm3tSlEEleBc9YiZsl1Oe2E1eArPxoiHIkphRbvB0Bj9dLAAbdvzUpvxLkd1M-roT2IFbnBIGTJSXqPiRgoRJKF9RXQ1s0Bgn1Gmor3y1Canw&h=Xjk7UWvb11bAEyCyIjtORLBvI7x8xtGIrpPy4JbEHwc + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss", + "name": "m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss", "status": "Creating", + "error": null}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss?api-version=2024-06-01&t=638908242908904216&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=O1wsz5p2AU4AMSVy1t3OQYFfVHOZJU6npKZkxg_Jne3kf13LxoTcINe5eQEsFIbCPjZSHlDO7JQNrooAKJ2umjoY0KRd2qladkSSJbMwv5L7Z91NvIXF4ZypZT3yEdgbTilp1I41qmlx2ZbXmUwisbfGTv-qbw3TtfzXBl5_118OAiJkIDz6-fbKbtzf5btZLhwSLRZzZ4dGX6nQwyHnxnI8_-8_rum88KiGX4luQM4xcU0heNvYxjOKBqKHby2teNik0xsWMnlsrCJ4aTJnMbQdICle7dNE5Y9o6RoQsNsZecwEYFdWFJHTy6JTpQn4it0o_ckt1WDIlyO_yy0dLQ&h=09ADOw-RoXD7UxDunfGhBpqVYEiZLSxc7yAAnc9mgG0 + cache-control: + - no-cache + content-length: + - '269' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:11:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/55f69a54-ffd1-4b9d-8c0e-3b69f472a408 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C9D0F03307C445BD94B1B4DFFC1BE17E Ref B: MAA201060516039 Ref C: 2025-08-15T03:11:30Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku --retention-days + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss?api-version=2024-06-01&t=638908242893278130&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=PtaRls-tl8egcRDakPMxBhZ3hB4SBAt8PVDwY1mWKVhwY6UO6ogNv3nZSvD5BdjmdGirNmZYnGW_TOuIJcyu8qjsW2GVsJOp0zpAkoFNQ6XzknRx8Mv7zhRTVyIvF1aUuF7e4SD0jwP8rCu5XSsEYKLHmXcKxLEnzhL45Px3uiYZk2HcAXqxKinW3Zw2FkqZB38IoRmZZA3k4eHRsdDmjQIWHVll4OsR6RXp3EkTftm3tSlEEleBc9YiZsl1Oe2E1eArPxoiHIkphRbvB0Bj9dLAAbdvzUpvxLkd1M-roT2IFbnBIGTJSXqPiRgoRJKF9RXQ1s0Bgn1Gmor3y1Canw&h=Xjk7UWvb11bAEyCyIjtORLBvI7x8xtGIrpPy4JbEHwc + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss", + "name": "m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss", "status": "Creating", + "error": null}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss?api-version=2024-06-01&t=638908243024619938&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=Z_FgE1pZf68icNvvTE2Yb6WKB5gAW7PqZSYEKlPpS5Pt68WSYAPuxTs4YtsQBB-DXXyHmY_jUBigYFGa1EI2iVvKi4OnurLBfgew-Yc7OZ32PW9KmuoHnR9MsPwXPEWbfSMgLynGpKedLjV8BPL9tbzY6MbjiBvZ8BHcRQyy21VfeFpXl3AMHKX6PboOurIVoY9Jxqx-RTDl6Q6sujdulycfdYBtZbmc34j3A2wXpe0Or43iXFDXljQPUk3_eMODVfTVWGmieFlenwuprKOrHRr5IGqAzqWwmTXREpeVPUd2un8XKvXUA1kcWxAwSAXDiLT5Eie_2_npKGMBJVF4GQ&h=Aa1Mqd6iErGV3GdZ5bAAQ9K_90I5PILwID9Me16gRl4 + cache-control: + - no-cache + content-length: + - '269' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:11:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/3110fdab-6374-4d54-b073-69ddffa348ac + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DD9C0432CA664E58916F2ACC1ACD43A9 Ref B: MAA201060514031 Ref C: 2025-08-15T03:11:41Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku --retention-days + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss?api-version=2024-06-01&t=638908242893278130&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=PtaRls-tl8egcRDakPMxBhZ3hB4SBAt8PVDwY1mWKVhwY6UO6ogNv3nZSvD5BdjmdGirNmZYnGW_TOuIJcyu8qjsW2GVsJOp0zpAkoFNQ6XzknRx8Mv7zhRTVyIvF1aUuF7e4SD0jwP8rCu5XSsEYKLHmXcKxLEnzhL45Px3uiYZk2HcAXqxKinW3Zw2FkqZB38IoRmZZA3k4eHRsdDmjQIWHVll4OsR6RXp3EkTftm3tSlEEleBc9YiZsl1Oe2E1eArPxoiHIkphRbvB0Bj9dLAAbdvzUpvxLkd1M-roT2IFbnBIGTJSXqPiRgoRJKF9RXQ1s0Bgn1Gmor3y1Canw&h=Xjk7UWvb11bAEyCyIjtORLBvI7x8xtGIrpPy4JbEHwc + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss", + "name": "m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss", "status": "Creating", + "error": null}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss?api-version=2024-06-01&t=638908243137907863&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=NZW2pdyupkAu6rYCXg4rk5s5ab1tQVcA6ANSMdm6S64aLnBOskrHBbupIVCNQUzT4UfbngM9r1m_4FMzob2z8BVpStLG6uu13qtF1j2NKQALORhfMQ4kBPreSs9_YOFVTRIIKbJBsaGi_jaV_4YR-w14ozVD_SU-YJiLN3UwVCucq_j3NLxX9qG4bHOZhH-om9BfY6KIyeDGNWak_RBRoCUzFi6J9un3MrIR9X6UriuHWas_N-XqsPLe8uKFaBv-BrYRxvTXV6lKaFskTPhtemkrDxaaMufzyeNbWR7YQffrNHOtO41EZaLsw8HRmEgkmVyEngtXeLjKxTWZRAIjag&h=PeuwyiylRVOu9wNAJ63G7KZ6iL3jqWiRwxAvKZzuWmg + cache-control: + - no-cache + content-length: + - '269' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:11:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/5f0197a9-b883-4eb6-91f7-7963a6e436d3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 989E2EBD5872495C9D2F3571579BCBC2 Ref B: MAA201060513033 Ref C: 2025-08-15T03:11:53Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku --retention-days + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss?api-version=2024-06-01&t=638908242893278130&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=PtaRls-tl8egcRDakPMxBhZ3hB4SBAt8PVDwY1mWKVhwY6UO6ogNv3nZSvD5BdjmdGirNmZYnGW_TOuIJcyu8qjsW2GVsJOp0zpAkoFNQ6XzknRx8Mv7zhRTVyIvF1aUuF7e4SD0jwP8rCu5XSsEYKLHmXcKxLEnzhL45Px3uiYZk2HcAXqxKinW3Zw2FkqZB38IoRmZZA3k4eHRsdDmjQIWHVll4OsR6RXp3EkTftm3tSlEEleBc9YiZsl1Oe2E1eArPxoiHIkphRbvB0Bj9dLAAbdvzUpvxLkd1M-roT2IFbnBIGTJSXqPiRgoRJKF9RXQ1s0Bgn1Gmor3y1Canw&h=Xjk7UWvb11bAEyCyIjtORLBvI7x8xtGIrpPy4JbEHwc + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss", + "name": "m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss", "status": "Succeeded", + "error": null}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/m1FXz_5xoMAbTxi1JVg-fG-3kSuD-JnS8hxkZstECss?api-version=2024-06-01&t=638908243251787012&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=nbx7l-D0dhslAZEGPGTZ_sSK1MBNO_eI0hwxWT3c_HElAW4B4SErWU5ra940EztmLmin8o5gdpYxx2yRsez3PhfXby5FojK9MtyiLx-drKYL6l37rPm4XqvzMXrfSol4pDYVzvRgdjw0otduAKfOrvIq5ZIwp0pvzjFz4RjH6Aaq7rx2WGq-3w9GlKB9CnmHAV_Z4VGJd8Chop8I8ZPgzW_JNXN4tUE3443MoU6j9NCfyUHocG7g5VyU1Odw5GykRCB3SKJLxrX-ibLO9bVJuOe2Pgbrh3rlmkInMd75XjH8me1U23gAFQNsUky9HYIXzBc3uoBPZIGziz3qfB-xhQ&h=NkeS71WiIns09l4jpVcXb18U_jOTXrPTQltwnrV5qMs + cache-control: + - no-cache + content-length: + - '270' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:12:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/04b9c62b-14ee-4215-80a1-b3caefafe245 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 1CB9A14A88E248B09C9290E12872A4FD Ref B: MAA201060513045 Ref C: 2025-08-15T03:12:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku --retention-days + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/ConfigMapImportTest000002?api-version=2024-06-01 + response: + body: + string: '{"type": "Microsoft.AppConfiguration/configurationStores", "location": + "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-15T03:11:28+00:00", "endpoint": "https://configmapimporttest5eotn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-15T03:11:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-15T03:11:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest5eotn", + "name": "ConfigMapImportTest000002", "tags": {}}' + headers: + cache-control: + - no-cache + content-length: + - '1040' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:12:06 GMT + etag: + - '"4b00bc3a-0000-0800-0000-689ea5640000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A69B14B074DA43BC9D2B46DFAB9AE9E5 Ref B: MAA201060513039 Ref C: 2025-08-15T03:12:05Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003?api-version=2025-04-02-preview + response: + body: + string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.ContainerService/managedClusters/ImportAKSTest000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '255' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:12:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + x-msedge-ref: + - 'Ref A: E8720990A6604F74A2601D2C8DEBAC71 Ref B: MAA201060516031 Ref C: 2025-08-15T03:12:10Z' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/virtualNetworks/junbchen-test-dev-vnet/subnets/default/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2022-04-01 + response: + body: + string: '{"value": [{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599", + "principalId": "5c445532-1499-448e-970c-bda7db1e1f15", "principalType": "ServicePrincipal", + "scope": "/", "condition": null, "conditionVersion": null, "createdOn": "2023-07-13T16:20:06.8829118Z", + "updatedOn": "2023-07-13T16:20:06.8829118Z", "createdBy": null, "updatedBy": + null, "delegatedManagedIdentityResourceId": null, "description": "Allow AccessMonitorReader + to read access details for compliance purpose"}, "id": "/providers/Microsoft.Authorization/roleAssignments/fb6b898e-5323-404d-a8af-da5aafc3ecc0", + "type": "Microsoft.Authorization/roleAssignments", "name": "fb6b898e-5323-404d-a8af-da5aafc3ecc0"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599", + "principalId": "612cdbb4-6edd-4998-aae9-129cdba53a9a", "principalType": "ServicePrincipal", + "scope": "/", "condition": null, "conditionVersion": null, "createdOn": "2023-07-19T22:13:56.3482970Z", + "updatedOn": "2023-07-19T22:13:56.3482970Z", "createdBy": null, "updatedBy": + null, "delegatedManagedIdentityResourceId": null, "description": "Allow AccessMonitorReader + to read access details for compliance purpose"}, "id": "/providers/Microsoft.Authorization/roleAssignments/3cdb16ce-2290-4f5f-bcab-5b07a458405f", + "type": "Microsoft.Authorization/roleAssignments", "name": "3cdb16ce-2290-4f5f-bcab-5b07a458405f"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b0f576e-fc2e-4256-9aa3-6fede171d599", + "principalId": "a1cd43c2-c713-4af4-b885-50540e2c595f", "principalType": "ServicePrincipal", + "scope": "/", "condition": null, "conditionVersion": null, "createdOn": "2023-07-19T22:18:24.6119781Z", + "updatedOn": "2023-07-19T22:18:24.6119781Z", "createdBy": null, "updatedBy": + null, "delegatedManagedIdentityResourceId": null, "description": "Allow AccessMonitorReader + to read access details for compliance purpose"}, "id": "/providers/Microsoft.Authorization/roleAssignments/125160dd-5630-45b1-8260-4e5469d3e7b6", + "type": "Microsoft.Authorization/roleAssignments", "name": "125160dd-5630-45b1-8260-4e5469d3e7b6"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd", + "principalId": "14630511-63a1-4d32-a204-a8002c139ad2", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2022-11-01T18:49:45.1924232Z", + "updatedOn": "2022-11-01T18:49:45.1924232Z", "createdBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", + "updatedBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48453e02-7546-4d9e-80f0-085312925bbe", + "type": "Microsoft.Authorization/roleAssignments", "name": "48453e02-7546-4d9e-80f0-085312925bbe"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8", + "principalId": "388cb5c7-ea72-4f66-b581-5cc382948ac6", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2022-07-07T14:48:36.5252281Z", + "updatedOn": "2022-07-07T14:48:36.5252281Z", "createdBy": "8a849d8c-f437-4431-ab62-aacc5860494b", + "updatedBy": "8a849d8c-f437-4431-ab62-aacc5860494b", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee4ba1dc-4e62-4a54-f1b8-32c3b4221c51", + "type": "Microsoft.Authorization/roleAssignments", "name": "ee4ba1dc-4e62-4a54-f1b8-32c3b4221c51"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "3107b718-fe81-4de8-9486-128c89e23ccf", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2022-07-07T14:48:38.0972894Z", + "updatedOn": "2022-07-07T14:48:38.0972894Z", "createdBy": "8a849d8c-f437-4431-ab62-aacc5860494b", + "updatedBy": "8a849d8c-f437-4431-ab62-aacc5860494b", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc5fb6b3-e442-4749-d633-b5d5ead0cb72", + "type": "Microsoft.Authorization/roleAssignments", "name": "fc5fb6b3-e442-4749-d633-b5d5ead0cb72"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293", + "principalId": "388cb5c7-ea72-4f66-b581-5cc382948ac6", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2022-07-07T14:48:37.8700598Z", + "updatedOn": "2022-07-07T14:48:37.8700598Z", "createdBy": "8a849d8c-f437-4431-ab62-aacc5860494b", + "updatedBy": "8a849d8c-f437-4431-ab62-aacc5860494b", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13628d0c-478f-48a8-6fb6-2c9547211ba2", + "type": "Microsoft.Authorization/roleAssignments", "name": "13628d0c-478f-48a8-6fb6-2c9547211ba2"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717", + "principalId": "388cb5c7-ea72-4f66-b581-5cc382948ac6", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2022-07-07T14:48:38.3273446Z", + "updatedOn": "2022-07-07T14:48:38.3273446Z", "createdBy": "8a849d8c-f437-4431-ab62-aacc5860494b", + "updatedBy": "8a849d8c-f437-4431-ab62-aacc5860494b", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3250717c-097b-4e55-a324-b53c53a835f2", + "type": "Microsoft.Authorization/roleAssignments", "name": "3250717c-097b-4e55-a324-b53c53a835f2"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293", + "principalId": "3107b718-fe81-4de8-9486-128c89e23ccf", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2022-07-07T14:48:38.4441760Z", + "updatedOn": "2022-07-07T14:48:38.4441760Z", "createdBy": "8a849d8c-f437-4431-ab62-aacc5860494b", + "updatedBy": "8a849d8c-f437-4431-ab62-aacc5860494b", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b365599f-d1ae-4cfc-1fb4-1e1bf0841c8a", + "type": "Microsoft.Authorization/roleAssignments", "name": "b365599f-d1ae-4cfc-1fb4-1e1bf0841c8a"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "388cb5c7-ea72-4f66-b581-5cc382948ac6", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2022-07-07T14:48:38.4372818Z", + "updatedOn": "2022-07-07T14:48:38.4372818Z", "createdBy": "8a849d8c-f437-4431-ab62-aacc5860494b", + "updatedBy": "8a849d8c-f437-4431-ab62-aacc5860494b", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6234c028-c3b0-47ad-8e8d-dcc16dd83bf3", + "type": "Microsoft.Authorization/roleAssignments", "name": "6234c028-c3b0-47ad-8e8d-dcc16dd83bf3"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8", + "principalId": "3107b718-fe81-4de8-9486-128c89e23ccf", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2022-07-07T14:48:38.3532839Z", + "updatedOn": "2022-07-07T14:48:38.3532839Z", "createdBy": "8a849d8c-f437-4431-ab62-aacc5860494b", + "updatedBy": "8a849d8c-f437-4431-ab62-aacc5860494b", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0cdf05b-852b-48c5-4648-1270996971f3", + "type": "Microsoft.Authorization/roleAssignments", "name": "c0cdf05b-852b-48c5-4648-1270996971f3"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "5718843f-0d64-4a34-8e32-31175c5f43e5", "principalType": "Group", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2019-06-11T23:31:53.9297410Z", + "updatedOn": "2019-06-11T23:31:53.9297410Z", "createdBy": "a72968d8-05b7-40ac-b916-a861c16a80e9", + "updatedBy": "a72968d8-05b7-40ac-b916-a861c16a80e9", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5c29800-b450-400f-b250-700946c610cb", + "type": "Microsoft.Authorization/roleAssignments", "name": "b5c29800-b450-400f-b250-700946c610cb"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6", + "principalId": "79fdef42-a84a-44b8-8467-700350a5ddfa", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2024-05-16T10:02:12.8640277Z", + "updatedOn": "2024-05-16T10:02:12.8640277Z", "createdBy": "d623c6cf-91ae-4c85-b385-8bdaf627575e", + "updatedBy": "d623c6cf-91ae-4c85-b385-8bdaf627575e", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0c50bd9-0c31-423d-8b5a-ebc7bb4c6105", + "type": "Microsoft.Authorization/roleAssignments", "name": "f0c50bd9-0c31-423d-8b5a-ebc7bb4c6105"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "f819bf1c-9cf9-42c3-bd59-82c507565fa1", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2024-05-16T10:02:19.2117841Z", + "updatedOn": "2024-05-16T10:02:19.2117841Z", "createdBy": "d623c6cf-91ae-4c85-b385-8bdaf627575e", + "updatedBy": "d623c6cf-91ae-4c85-b385-8bdaf627575e", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cac3a236-0e17-4007-9e81-a3abe13ac93e", + "type": "Microsoft.Authorization/roleAssignments", "name": "cac3a236-0e17-4007-9e81-a3abe13ac93e"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8480c0f0-4509-4229-9339-7c10018cb8c4", + "principalId": "4086968f-11a2-4893-9350-dacd44f61b45", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2024-05-16T10:02:28.1661863Z", + "updatedOn": "2024-05-16T10:02:28.1661863Z", "createdBy": "d623c6cf-91ae-4c85-b385-8bdaf627575e", + "updatedBy": "d623c6cf-91ae-4c85-b385-8bdaf627575e", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd207a30-c212-4fac-bf42-0e1433cae259", + "type": "Microsoft.Authorization/roleAssignments", "name": "cd207a30-c212-4fac-bf42-0e1433cae259"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6", + "principalId": "4086968f-11a2-4893-9350-dacd44f61b45", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2024-05-16T10:02:37.4111440Z", + "updatedOn": "2024-05-16T10:02:37.4111440Z", "createdBy": "d623c6cf-91ae-4c85-b385-8bdaf627575e", + "updatedBy": "d623c6cf-91ae-4c85-b385-8bdaf627575e", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cf1dc39-b2ba-4ab6-b489-8b1bc5a65d4b", + "type": "Microsoft.Authorization/roleAssignments", "name": "1cf1dc39-b2ba-4ab6-b489-8b1bc5a65d4b"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1", + "principalId": "89d291c1-7b34-4fe2-b6a7-07eae83fa196", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2024-05-18T00:13:29.2239606Z", + "updatedOn": "2024-05-18T00:13:29.2239606Z", "createdBy": "4086968f-11a2-4893-9350-dacd44f61b45", + "updatedBy": "4086968f-11a2-4893-9350-dacd44f61b45", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31dd8a3e-cc1f-46d3-8fa1-1f94d10f080d", + "type": "Microsoft.Authorization/roleAssignments", "name": "31dd8a3e-cc1f-46d3-8fa1-1f94d10f080d"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", + "principalId": "a72968d8-05b7-40ac-b916-a861c16a80e9", "principalType": "User", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2024-08-05T20:31:40.7003300Z", + "updatedOn": "2024-08-05T20:31:40.7003300Z", "createdBy": "a72968d8-05b7-40ac-b916-a861c16a80e9", + "updatedBy": "a72968d8-05b7-40ac-b916-a861c16a80e9", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb7a148f-6a34-4ff1-a898-f4017257002c", + "type": "Microsoft.Authorization/roleAssignments", "name": "fb7a148f-6a34-4ff1-a898-f4017257002c"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "0e5150d1-c2e4-41a0-82d2-734435a590c5", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2024-09-21T00:43:52.7154783Z", + "updatedOn": "2024-09-21T00:43:52.7154783Z", "createdBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", + "updatedBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/813c48b9-277e-4e2e-884e-e04e59030c42", + "type": "Microsoft.Authorization/roleAssignments", "name": "813c48b9-277e-4e2e-884e-e04e59030c42"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b8eda974-7b85-4f76-af95-65846b26df6d", + "principalId": "89d291c1-7b34-4fe2-b6a7-07eae83fa196", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2024-11-08T03:29:23.0180579Z", + "updatedOn": "2024-11-08T03:29:23.0180579Z", "createdBy": "4086968f-11a2-4893-9350-dacd44f61b45", + "updatedBy": "4086968f-11a2-4893-9350-dacd44f61b45", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39f77571-cbd9-4240-ba60-9cbe8c3d2ca8", + "type": "Microsoft.Authorization/roleAssignments", "name": "39f77571-cbd9-4240-ba60-9cbe8c3d2ca8"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "12b66ab6-18ff-459b-8422-67b79f3ff878", "principalType": "Group", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2025-01-17T22:10:05.5622265Z", + "updatedOn": "2025-01-17T22:10:05.5622265Z", "createdBy": "a72968d8-05b7-40ac-b916-a861c16a80e9", + "updatedBy": "a72968d8-05b7-40ac-b916-a861c16a80e9", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94eee65c-f209-44d1-bc92-291bdd29d393", + "type": "Microsoft.Authorization/roleAssignments", "name": "94eee65c-f209-44d1-bc92-291bdd29d393"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608", + "principalId": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", "principalType": "User", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2025-03-04T00:57:13.6585404Z", + "updatedOn": "2025-03-04T00:57:13.6585404Z", "createdBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", + "updatedBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7087a819-96c8-4777-b6e3-d82d81981fad", + "type": "Microsoft.Authorization/roleAssignments", "name": "7087a819-96c8-4777-b6e3-d82d81981fad"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608", + "principalId": "376bbc29-d3b6-4e92-919d-fade281f68f4", "principalType": "User", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2025-04-03T01:27:07.7273201Z", + "updatedOn": "2025-04-03T01:27:07.7273201Z", "createdBy": "376bbc29-d3b6-4e92-919d-fade281f68f4", + "updatedBy": "376bbc29-d3b6-4e92-919d-fade281f68f4", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7fada5e-393e-4727-ae51-df6b5362170e", + "type": "Microsoft.Authorization/roleAssignments", "name": "f7fada5e-393e-4727-ae51-df6b5362170e"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "b9fc62e6-a21b-482a-bdd3-9a007200f8dc", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2025-06-06T05:27:38.1037052Z", + "updatedOn": "2025-06-06T05:27:38.1037052Z", "createdBy": "376bbc29-d3b6-4e92-919d-fade281f68f4", + "updatedBy": "376bbc29-d3b6-4e92-919d-fade281f68f4", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a0556ac7-85c3-4564-b67e-8c4f9e4973fc", + "type": "Microsoft.Authorization/roleAssignments", "name": "a0556ac7-85c3-4564-b67e-8c4f9e4973fc"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "a71a288f-2124-49a7-aada-8a459729a641", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/virtualNetworks/junbchen-test-dev-vnet/subnets/default", + "condition": null, "conditionVersion": null, "createdOn": "2025-07-10T02:59:00.8768294Z", + "updatedOn": "2025-07-10T02:59:00.8768294Z", "createdBy": "09dbf457-10c4-4829-9786-fe1cd8ef6945", + "updatedBy": "09dbf457-10c4-4829-9786-fe1cd8ef6945", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/virtualNetworks/junbchen-test-dev-vnet/subnets/default/providers/Microsoft.Authorization/roleAssignments/585f25d7-f0d4-4490-a4d1-869da224d18a", + "type": "Microsoft.Authorization/roleAssignments", "name": "585f25d7-f0d4-4490-a4d1-869da224d18a"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f", + "principalId": "0e5150d1-c2e4-41a0-82d2-734435a590c5", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2025-07-16T00:05:13.5302297Z", + "updatedOn": "2025-07-16T00:05:13.5302297Z", "createdBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", + "updatedBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83fdf5a4-ff7c-5475-9454-ec68b0a6c7cf", + "type": "Microsoft.Authorization/roleAssignments", "name": "83fdf5a4-ff7c-5475-9454-ec68b0a6c7cf"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608", + "principalId": "0e5150d1-c2e4-41a0-82d2-734435a590c5", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2025-07-16T00:05:13.8086661Z", + "updatedOn": "2025-07-16T00:05:13.8086661Z", "createdBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", + "updatedBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da087547-a522-53dc-8acb-e4e70ac9fe3d", + "type": "Microsoft.Authorization/roleAssignments", "name": "da087547-a522-53dc-8acb-e4e70ac9fe3d"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "7c34facc-a572-469c-91ca-cc754602193d", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2025-07-18T01:02:15.7848963Z", + "updatedOn": "2025-07-18T01:02:15.7848963Z", "createdBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", + "updatedBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a99a4cd-e932-4b3c-b32d-9bbe2fd37b10", + "type": "Microsoft.Authorization/roleAssignments", "name": "2a99a4cd-e932-4b3c-b32d-9bbe2fd37b10"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "7d1de4bd-e86c-4395-8ffb-ac4a927f5ea1", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2025-07-19T00:59:02.8134227Z", + "updatedOn": "2025-07-19T00:59:02.8134227Z", "createdBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", + "updatedBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b497f926-f7ea-4247-976d-7ce775efeeed", + "type": "Microsoft.Authorization/roleAssignments", "name": "b497f926-f7ea-4247-976d-7ce775efeeed"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f", + "principalId": "7d1de4bd-e86c-4395-8ffb-ac4a927f5ea1", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2025-07-19T02:35:40.8993604Z", + "updatedOn": "2025-07-19T02:35:40.8993604Z", "createdBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", + "updatedBy": "70c8e2ad-87dd-49e5-ab3c-d76b18b5c3cd", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90757528-e00f-4224-9406-da271a6f1988", + "type": "Microsoft.Authorization/roleAssignments", "name": "90757528-e00f-4224-9406-da271a6f1988"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "bc6ddfe0-4047-463a-aebc-0ef8f47da171", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2025-07-29T11:26:49.7603327Z", + "updatedOn": "2025-07-29T11:26:49.7603327Z", "createdBy": "69c2cafd-a88f-4f4a-adb0-6d7547dd8e22", + "updatedBy": "69c2cafd-a88f-4f4a-adb0-6d7547dd8e22", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/efde8c2b-e2b3-4dd7-83df-dc172d9980fe", + "type": "Microsoft.Authorization/roleAssignments", "name": "efde8c2b-e2b3-4dd7-83df-dc172d9980fe"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4abbcc35-e782-43d8-92c5-2d3f1bd2253f", + "principalId": "bc6ddfe0-4047-463a-aebc-0ef8f47da171", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2025-07-30T05:44:19.7103242Z", + "updatedOn": "2025-07-30T05:44:19.7103242Z", "createdBy": "69c2cafd-a88f-4f4a-adb0-6d7547dd8e22", + "updatedBy": "69c2cafd-a88f-4f4a-adb0-6d7547dd8e22", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf58cec7-0967-426f-824e-847478d92a82", + "type": "Microsoft.Authorization/roleAssignments", "name": "bf58cec7-0967-426f-824e-847478d92a82"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4abbcc35-e782-43d8-92c5-2d3f1bd2253f", + "principalId": "eed5e231-05cf-4c99-9914-27e8a925e693", "principalType": "ServicePrincipal", + "scope": "/subscriptions/00000000-0000-0000-0000-000000000000", "condition": + null, "conditionVersion": null, "createdOn": "2025-07-30T06:27:14.9962189Z", + "updatedOn": "2025-07-30T06:27:14.9962189Z", "createdBy": "69c2cafd-a88f-4f4a-adb0-6d7547dd8e22", + "updatedBy": "69c2cafd-a88f-4f4a-adb0-6d7547dd8e22", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d53b058-ee1c-4c23-8e1d-946d20b45e14", + "type": "Microsoft.Authorization/roleAssignments", "name": "1d53b058-ee1c-4c23-8e1d-946d20b45e14"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9", + "principalId": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/1cb3b7c7-4f3e-3934-263a-f46b2ce5ddb6", + "condition": null, "conditionVersion": null, "createdOn": "2021-08-25T21:58:52.9665797Z", + "updatedOn": "2021-08-25T21:58:52.9665797Z", "createdBy": "7d9ed04d-654a-46d9-8306-bc2651cc6b9f", + "updatedBy": "7d9ed04d-654a-46d9-8306-bc2651cc6b9f", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/1cb3b7c7-4f3e-3934-263a-f46b2ce5ddb6/providers/Microsoft.Authorization/roleAssignments/f787504c-7d92-47c3-a273-e13d5c22c910", + "type": "Microsoft.Authorization/roleAssignments", "name": "f787504c-7d92-47c3-a273-e13d5c22c910"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9", + "principalId": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2019-03-26T22:01:02.9136073Z", + "updatedOn": "2019-03-26T22:01:02.9136073Z", "createdBy": "8701e34d-d7c2-459c-b2d7-f3a9c5204818", + "updatedBy": "8701e34d-d7c2-459c-b2d7-f3a9c5204818", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067", + "type": "Microsoft.Authorization/roleAssignments", "name": "6f4de15e-9316-4714-a7c4-40c46cf8e067"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "2ac3f52f-f3ad-40a4-9b2d-aa24e4c7bbba", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2020-02-25T18:36:13.2137492Z", + "updatedOn": "2020-02-25T18:36:13.2137492Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2", + "type": "Microsoft.Authorization/roleAssignments", "name": "18fdd87e-1c01-424e-b380-32310f4940c2"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "56d08bc2-cc29-4d23-9d23-fd396b807b02", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2020-02-25T18:35:55.7490022Z", + "updatedOn": "2020-02-25T18:35:55.7490022Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4", + "type": "Microsoft.Authorization/roleAssignments", "name": "6e2b954b-42b2-48e0-997a-622601f0a4b4"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "4a113caa-961f-4535-ac9b-79bfba8b9ed2", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2020-02-25T18:36:00.4746112Z", + "updatedOn": "2020-02-25T18:36:00.4746112Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396", + "type": "Microsoft.Authorization/roleAssignments", "name": "d9bcf58a-6f24-446d-bf60-20ffe5142396"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "6179a082-c057-4fe3-8118-916b816a42e3", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2020-02-25T18:35:57.9173081Z", + "updatedOn": "2020-02-25T18:35:57.9173081Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9", + "type": "Microsoft.Authorization/roleAssignments", "name": "8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "7c2d0d59-528c-434a-8c6c-03330539cad2", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2020-02-25T18:36:31.2596366Z", + "updatedOn": "2020-02-25T18:36:31.2596366Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368", + "type": "Microsoft.Authorization/roleAssignments", "name": "0dabf212-a1c7-4af6-ba8b-be045493b368"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "7d7aed0a-228e-420b-a6a2-82a49dacb8cb", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2020-02-25T18:35:52.9188704Z", + "updatedOn": "2020-02-25T18:35:52.9188704Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce", + "type": "Microsoft.Authorization/roleAssignments", "name": "d674b853-332e-4437-9ddb-bba8fde7ccce"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "b7a49237-f5b0-473f-a4ff-6830d23af17d", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2020-02-25T18:36:38.8393742Z", + "updatedOn": "2020-02-25T18:36:38.8393742Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289", + "type": "Microsoft.Authorization/roleAssignments", "name": "00625383-053d-4227-a4db-b098e9bd2289"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "f2e939bc-742a-42f9-a27a-f0982c6e3f64", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2020-02-25T18:36:05.0954462Z", + "updatedOn": "2020-02-25T18:36:05.0954462Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5", + "type": "Microsoft.Authorization/roleAssignments", "name": "3151fe9c-fcd2-45d3-a256-72fb13b86df5"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "b7b8bd19-f827-425f-9be1-fd8a86b21904", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2020-07-06T18:51:23.0753297Z", + "updatedOn": "2020-07-06T18:51:23.0753297Z", "createdBy": "d59f4a71-eff1-4bfa-a572-fe518f49f6c7", + "updatedBy": "d59f4a71-eff1-4bfa-a572-fe518f49f6c7", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359", + "type": "Microsoft.Authorization/roleAssignments", "name": "b3a9e1db-fde1-4ddd-ac1c-91913be67359"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "700587cd-b5ad-4d37-b560-3ff43a4a5490", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2022-12-12T21:14:55.1655079Z", + "updatedOn": "2023-02-28T22:54:18.0450083Z", "createdBy": "393a8425-6c8d-4d4a-a700-811f0423e5aa", + "updatedBy": "393a8425-6c8d-4d4a-a700-811f0423e5aa", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11", + "type": "Microsoft.Authorization/roleAssignments", "name": "6565c104-61e2-5756-96d7-663b216c8b11"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "482dccba-36b8-4309-8599-dce82be5b107", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2022-02-17T00:30:39.4967398Z", + "updatedOn": "2022-02-17T00:30:39.4967398Z", "createdBy": "a4319ad3-20be-4542-8952-685b66e56377", + "updatedBy": "a4319ad3-20be-4542-8952-685b66e56377", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4", + "type": "Microsoft.Authorization/roleAssignments", "name": "d8aedac6-3663-42b3-add4-c013b7935fb4"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "0504eea8-68f8-4367-a04f-38407a0c4a97", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2022-03-02T23:53:39.1630622Z", + "updatedOn": "2022-03-02T23:53:39.1630622Z", "createdBy": "a4319ad3-20be-4542-8952-685b66e56377", + "updatedBy": "a4319ad3-20be-4542-8952-685b66e56377", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20", + "type": "Microsoft.Authorization/roleAssignments", "name": "b5f0a13f-ac13-4e45-8588-15f5d9a02b20"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971", + "principalId": "1fdb09c2-872e-43c5-bb79-561e3122dc8a", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2022-03-08T00:58:05.8353141Z", + "updatedOn": "2022-03-08T00:58:05.8353141Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced", + "type": "Microsoft.Authorization/roleAssignments", "name": "403b97d1-ee0a-4b10-afe1-f36f368d2ced"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "0d73806b-2839-44f0-b9e0-3de55a565a24", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2022-05-17T18:23:54.2264851Z", + "updatedOn": "2022-05-31T17:20:00.8273681Z", "createdBy": "393a8425-6c8d-4d4a-a700-811f0423e5aa", + "updatedBy": "393a8425-6c8d-4d4a-a700-811f0423e5aa", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6", + "type": "Microsoft.Authorization/roleAssignments", "name": "f0576973-5014-5fe2-b3f2-cf3aace860d6"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4", + "principalId": "bec26c10-d462-4862-9537-53c98dd5606c", "principalType": "Group", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2022-05-16T23:08:20.8536608Z", + "updatedOn": "2022-05-16T23:08:20.8536608Z", "createdBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", + "updatedBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c", + "type": "Microsoft.Authorization/roleAssignments", "name": "8b338a13-cfa6-42e6-b424-fb375ce9d07c"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "421cdbd5-e8fa-4961-a599-600c3230e091", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2022-07-19T00:07:21.3325762Z", + "updatedOn": "2022-07-19T00:07:21.3325762Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5", + "type": "Microsoft.Authorization/roleAssignments", "name": "2697280b-812c-472d-841b-a10a9fe540a5"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971", + "principalId": "9c6d261d-f447-4cf6-bbde-6010b3953a75", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2022-07-19T00:07:23.7020980Z", + "updatedOn": "2022-07-19T00:07:23.7020980Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6", + "type": "Microsoft.Authorization/roleAssignments", "name": "f4254463-7a28-4d26-b331-5a18c354cbe6"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "f47f1409-00ea-40d5-bed1-401a50741ae3", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2022-07-19T00:07:26.4080657Z", + "updatedOn": "2022-07-19T00:07:26.4080657Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64", + "type": "Microsoft.Authorization/roleAssignments", "name": "065a63ba-71cc-4c69-b92b-bc67421e7e64"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "e0cb5c33-2084-4cec-ac51-2bc313d4502e", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2023-04-07T05:56:00.4871186Z", + "updatedOn": "2023-04-24T19:44:20.3477537Z", "createdBy": "09a22e59-e99b-42cb-b8b7-2475f66a3007", + "updatedBy": "09a22e59-e99b-42cb-b8b7-2475f66a3007", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/17a093c4-e4b2-5959-95e3-5894ef6873fb", + "type": "Microsoft.Authorization/roleAssignments", "name": "17a093c4-e4b2-5959-95e3-5894ef6873fb"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "f7b9f917-9a41-437c-84b1-682a814dbaf6", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2023-11-26T01:37:41.9144630Z", + "updatedOn": "2024-01-08T19:18:08.6396605Z", "createdBy": "815c7b56-317b-457c-bf99-f9c2b6a3f739", + "updatedBy": "815c7b56-317b-457c-bf99-f9c2b6a3f739", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/67815997-99bc-5b98-9a5d-5ad5a092d499", + "type": "Microsoft.Authorization/roleAssignments", "name": "67815997-99bc-5b98-9a5d-5ad5a092d499"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "6571efc1-a303-44df-b1b8-38523fdea4fa", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2021-08-09T18:17:33.0012805Z", + "updatedOn": "2021-08-09T18:17:33.0012805Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252", + "type": "Microsoft.Authorization/roleAssignments", "name": "01de8fe7-aae0-4d5c-844a-f0bdb8335252"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "dc50c6c2-4754-411b-9fe0-f341f3910403", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2021-08-24T19:32:18.2000692Z", + "updatedOn": "2021-08-24T19:32:18.2000692Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4", + "type": "Microsoft.Authorization/roleAssignments", "name": "0ce2f3fb-17ea-4193-9081-09aa4b39fec4"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "72c0a066-b35b-4d68-bd6f-d406ed3f2b9f", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2021-08-09T18:17:39.9188336Z", + "updatedOn": "2021-08-09T18:17:39.9188336Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439", + "type": "Microsoft.Authorization/roleAssignments", "name": "ab2be506-5489-4c1f-add0-f5ed87a10439"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "779ead4e-2dc9-4191-b651-7f2a57b0b6ff", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2021-08-24T19:32:36.6775144Z", + "updatedOn": "2021-08-24T19:32:36.6775144Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c", + "type": "Microsoft.Authorization/roleAssignments", "name": "2e95b289-99bd-4e68-83de-5433f2a0428c"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "fd279736-6a60-4ae6-b252-3ae9d9fea200", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2021-11-01T22:46:09.1056400Z", + "updatedOn": "2021-11-01T22:46:09.1056400Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba", + "type": "Microsoft.Authorization/roleAssignments", "name": "82fe7886-5c1b-42c2-9319-7b4d436d8aba"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "40b1b8e8-c813-4c09-b2bb-86db1f921168", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2021-11-01T22:46:14.7527743Z", + "updatedOn": "2021-11-01T22:46:14.7527743Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6", + "type": "Microsoft.Authorization/roleAssignments", "name": "12162b26-25fb-4ef5-a6e8-651446483cb6"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "fde3669e-734a-4765-a063-fdec3647fcc8", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2021-11-01T22:46:20.6399869Z", + "updatedOn": "2021-11-01T22:46:20.6399869Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870", + "type": "Microsoft.Authorization/roleAssignments", "name": "105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "76ae450f-630f-4af4-92cf-e7153ba839f0", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2021-01-26T20:10:13.8998989Z", + "updatedOn": "2021-01-26T20:10:13.8998989Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee", + "type": "Microsoft.Authorization/roleAssignments", "name": "b36517ec-61d3-468d-afdc-eceda8adb4ee"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "fd3aca68-eb29-4ad8-be21-662836d3f454", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2021-02-06T00:13:19.1780775Z", + "updatedOn": "2021-02-06T00:13:19.1780775Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157", + "type": "Microsoft.Authorization/roleAssignments", "name": "5216c1ee-4f58-4d36-b379-6c04b1fbd157"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395", + "principalId": "5a1044d8-27f6-4e3d-b994-30521eedb46c", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2021-04-16T18:26:34.3109215Z", + "updatedOn": "2021-04-16T18:26:34.3109215Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad", + "type": "Microsoft.Authorization/roleAssignments", "name": "7464f8a3-9f55-443b-a3a5-44a31b100cad"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "2b8b0d82-3484-40e9-b634-df286b616735", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2021-05-04T19:20:06.7695456Z", + "updatedOn": "2021-05-04T19:20:06.7695456Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa", + "type": "Microsoft.Authorization/roleAssignments", "name": "fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "5e83e4cb-9b41-4b98-b8dd-4fc3951ea1ed", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2021-04-16T18:27:56.4446265Z", + "updatedOn": "2021-04-16T18:27:56.4446265Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111", + "type": "Microsoft.Authorization/roleAssignments", "name": "8f430c4c-4317-4495-9f01-4f3d4e1ca111"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "eb5dcf2a-c769-4615-b84b-74ac50f15a4a", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-06-29T08:10:10.2639240Z", + "updatedOn": "2024-07-03T06:42:54.2315474Z", "createdBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", + "updatedBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fd981fb3-5e11-5e90-aa7b-b646c44e910a", + "type": "Microsoft.Authorization/roleAssignments", "name": "fd981fb3-5e11-5e90-aa7b-b646c44e910a"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "be438bf2-6cab-41fa-9b2c-9eaf5cd8049d", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-07-15T23:41:54.4771046Z", + "updatedOn": "2024-07-15T23:41:54.4771046Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ddcc0944-0060-4959-839b-3a0375f3c67d", + "type": "Microsoft.Authorization/roleAssignments", "name": "ddcc0944-0060-4959-839b-3a0375f3c67d"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d224f7c-5c93-4466-b116-8c0c62090d0d", + "principalId": "526cce61-401e-4709-9918-7888208dbe55", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-08-06T19:46:22.1511939Z", + "updatedOn": "2024-08-06T19:46:22.1511939Z", "createdBy": "46e80812-4c4e-42fa-88fe-73f37845efe3", + "updatedBy": "46e80812-4c4e-42fa-88fe-73f37845efe3", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/924c5f63-7511-49c2-b9f5-5a5b8deeb6cd", + "type": "Microsoft.Authorization/roleAssignments", "name": "924c5f63-7511-49c2-b9f5-5a5b8deeb6cd"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432", + "principalId": "ed64b40d-cfa6-405c-890c-ade489e6dc9c", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.4640815Z", + "updatedOn": "2024-09-04T17:58:51.4640815Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/16ad0a18-aacd-4844-8c39-22deb4119f74", + "type": "Microsoft.Authorization/roleAssignments", "name": "16ad0a18-aacd-4844-8c39-22deb4119f74"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772", + "principalId": "2dd1ea73-4024-489e-83a4-45cb3e962f69", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.6627656Z", + "updatedOn": "2024-09-04T17:58:51.6627656Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5e997838-ea3d-4e79-8d7b-2d2dfdbe3868", + "type": "Microsoft.Authorization/roleAssignments", "name": "5e997838-ea3d-4e79-8d7b-2d2dfdbe3868"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437", + "principalId": "8b940b4f-b118-465f-bdd4-65cf3c55cc3e", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.6545669Z", + "updatedOn": "2024-09-04T17:58:51.6545669Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5b4f87ba-5464-4cb2-8c0d-1ac09e851dd0", + "type": "Microsoft.Authorization/roleAssignments", "name": "5b4f87ba-5464-4cb2-8c0d-1ac09e851dd0"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c", + "principalId": "64cb6e50-2fe8-4ad4-86e9-291b799fd3b7", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.7609502Z", + "updatedOn": "2024-09-04T17:58:51.7609502Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5eb9a251-63c4-4db4-a2f2-689d011b4509", + "type": "Microsoft.Authorization/roleAssignments", "name": "5eb9a251-63c4-4db4-a2f2-689d011b4509"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab", + "principalId": "ff29f09e-a8be-4afc-b627-d02fcaf6c28d", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.8333637Z", + "updatedOn": "2024-09-04T17:58:51.8333637Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/1cd85cca-586c-45d9-9f81-4074965a9d99", + "type": "Microsoft.Authorization/roleAssignments", "name": "1cd85cca-586c-45d9-9f81-4074965a9d99"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "5f354ec9-f512-41f0-9f1f-ce25bbeb5369", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.3122114Z", + "updatedOn": "2024-09-04T17:58:51.3122114Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e0ef8920-e57d-4c1c-a21f-0765b34786b5", + "type": "Microsoft.Authorization/roleAssignments", "name": "e0ef8920-e57d-4c1c-a21f-0765b34786b5"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d", + "principalId": "2dcdba1f-c5f9-4092-bce5-bf593ac4bea5", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.5115488Z", + "updatedOn": "2024-09-04T17:58:51.5115488Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/27929cc1-e4f6-4dab-80cb-51b2743ec222", + "type": "Microsoft.Authorization/roleAssignments", "name": "27929cc1-e4f6-4dab-80cb-51b2743ec222"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa", + "principalId": "4efc6c2d-d534-418c-b109-7f54e80a70d0", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.6565526Z", + "updatedOn": "2024-09-04T17:58:51.6565526Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/a68687e3-f706-452b-ad9b-5d2497348da4", + "type": "Microsoft.Authorization/roleAssignments", "name": "a68687e3-f706-452b-ad9b-5d2497348da4"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "10b09f65-7a54-41fa-965d-ca3490541488", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.6436777Z", + "updatedOn": "2024-09-04T17:58:51.6436777Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ea232a8a-e2e3-472d-a926-257f61a306f8", + "type": "Microsoft.Authorization/roleAssignments", "name": "ea232a8a-e2e3-472d-a926-257f61a306f8"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab", + "principalId": "ff29f09e-a8be-4afc-b627-d02fcaf6c28d", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.6276165Z", + "updatedOn": "2024-09-04T17:58:51.6276165Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f61532eb-c3be-4af1-9283-49c3e54978bd", + "type": "Microsoft.Authorization/roleAssignments", "name": "f61532eb-c3be-4af1-9283-49c3e54978bd"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "10b09f65-7a54-41fa-965d-ca3490541488", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.6806125Z", + "updatedOn": "2024-09-04T17:58:51.6806125Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/48f44b2a-d2b7-45f6-b80a-930a630b26e7", + "type": "Microsoft.Authorization/roleAssignments", "name": "48f44b2a-d2b7-45f6-b80a-930a630b26e7"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419", + "principalId": "dd6b2b46-ce72-42b7-af27-93fa41db399e", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.3196261Z", + "updatedOn": "2024-09-04T17:58:51.3196261Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6cca32ef-f72d-42b9-a956-b28bd5fd59a8", + "type": "Microsoft.Authorization/roleAssignments", "name": "6cca32ef-f72d-42b9-a956-b28bd5fd59a8"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17", + "principalId": "729eba1d-8508-4034-abd2-54128fbe8b22", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:52.0592211Z", + "updatedOn": "2024-09-04T17:58:52.0592211Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/cd9c7e9c-f79f-4f2c-9e28-28879d2e85ec", + "type": "Microsoft.Authorization/roleAssignments", "name": "cd9c7e9c-f79f-4f2c-9e28-28879d2e85ec"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd", + "principalId": "cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-04T17:58:51.6932275Z", + "updatedOn": "2024-09-04T17:58:51.6932275Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/48c6a306-5301-439e-86b0-9e2bca52994e", + "type": "Microsoft.Authorization/roleAssignments", "name": "48c6a306-5301-439e-86b0-9e2bca52994e"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8", + "principalId": "3583e1a9-dbb9-472e-ab5c-2c7b0e2a9615", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-16T07:48:49.7761077Z", + "updatedOn": "2024-10-09T11:32:02.0971195Z", "createdBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", + "updatedBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7a465a70-0737-5ea3-a401-17d618549b26", + "type": "Microsoft.Authorization/roleAssignments", "name": "7a465a70-0737-5ea3-a401-17d618549b26"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064", + "principalId": "3583e1a9-dbb9-472e-ab5c-2c7b0e2a9615", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-16T07:48:51.5805513Z", + "updatedOn": "2024-10-09T11:32:04.0456795Z", "createdBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", + "updatedBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e26bf549-e870-5800-af71-7a0d874ba92d", + "type": "Microsoft.Authorization/roleAssignments", "name": "e26bf549-e870-5800-af71-7a0d874ba92d"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId": "0a44da5b-5b98-42b5-aa43-be2ceae9a377", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-20T23:14:31.6471670Z", + "updatedOn": "2024-09-20T23:14:31.6471670Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/a514e01b-fd6b-4bfa-a4ee-0747994c9e5f", + "type": "Microsoft.Authorization/roleAssignments", "name": "a514e01b-fd6b-4bfa-a4ee-0747994c9e5f"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302", + "principalId": "2a7381d1-1dae-4b42-93f4-181ada4c4865", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2025-01-16T00:02:23.0916862Z", + "updatedOn": "2025-02-04T02:25:20.8028292Z", "createdBy": "09a22e59-e99b-42cb-b8b7-2475f66a3007", + "updatedBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2674eb52-f8a5-5178-80e5-c2775b7da442", + "type": "Microsoft.Authorization/roleAssignments", "name": "2674eb52-f8a5-5178-80e5-c2775b7da442"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302", + "principalId": "273459e4-5fc5-4997-aae0-de7455209f23", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2025-01-28T20:53:00.9077636Z", + "updatedOn": "2025-02-03T23:46:56.0575877Z", "createdBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", + "updatedBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/dd64da31-e90a-58fb-8767-341d655cf574", + "type": "Microsoft.Authorization/roleAssignments", "name": "dd64da31-e90a-58fb-8767-341d655cf574"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971", + "principalId": "d55756eb-3c10-462c-9025-5cc2ada4952e", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2025-04-18T17:43:23.1883169Z", + "updatedOn": "2025-05-16T00:31:07.3346817Z", "createdBy": "867bbc59-27fb-4f50-9b92-51aeff73dca0", + "updatedBy": "867bbc59-27fb-4f50-9b92-51aeff73dca0", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/e6bdd883-b621-5a5f-b0f7-f32ce47f9f94", + "type": "Microsoft.Authorization/roleAssignments", "name": "e6bdd883-b621-5a5f-b0f7-f32ce47f9f94"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c", + "principalId": "b5d47a1d-7a52-48b7-80e0-f027c137f72e", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2025-05-21T06:03:10.0225514Z", + "updatedOn": "2025-06-03T19:22:35.6825881Z", "createdBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", + "updatedBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/28ebc426-cb80-59c0-b843-57910686e9a8", + "type": "Microsoft.Authorization/roleAssignments", "name": "28ebc426-cb80-59c0-b843-57910686e9a8"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "2dd1ea73-4024-489e-83a4-45cb3e962f69", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792", + "condition": null, "conditionVersion": null, "createdOn": "2025-07-09T17:00:12.2804133Z", + "updatedOn": "2025-07-09T17:00:12.2804133Z", "createdBy": "526cce61-401e-4709-9918-7888208dbe55", + "updatedBy": "526cce61-401e-4709-9918-7888208dbe55", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/72ac5e88-b456-42a7-9c02-7f8c58efc8dc", + "type": "Microsoft.Authorization/roleAssignments", "name": "72ac5e88-b456-42a7-9c02-7f8c58efc8dc"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ebc6a08c-9436-41c0-98ea-9a98ce69e91c", + "principalId": "93c69cf7-7f7c-44e8-bc82-889084703380", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2024-10-25T00:59:34.6842751Z", + "updatedOn": "2024-10-25T00:59:34.6842751Z", "createdBy": "7065961c-d3a8-4346-985c-12cd2dec2994", + "updatedBy": "7065961c-d3a8-4346-985c-12cd2dec2994", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/80be68ee-64b9-41c6-ad33-91e561563dc3", + "type": "Microsoft.Authorization/roleAssignments", "name": "80be68ee-64b9-41c6-ad33-91e561563dc3"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608", + "principalId": "93c69cf7-7f7c-44e8-bc82-889084703380", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2024-10-25T01:00:25.9766703Z", + "updatedOn": "2024-10-25T01:00:25.9766703Z", "createdBy": "7065961c-d3a8-4346-985c-12cd2dec2994", + "updatedBy": "7065961c-d3a8-4346-985c-12cd2dec2994", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/7fcb7148-5d5b-43f5-866a-28bfc6db1727", + "type": "Microsoft.Authorization/roleAssignments", "name": "7fcb7148-5d5b-43f5-866a-28bfc6db1727"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608", + "principalId": "1f75b9dd-4f1d-4e80-9521-321a8b1f5764", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2019-03-27T00:49:37.3000523Z", + "updatedOn": "2019-03-27T00:49:37.3000523Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29", + "type": "Microsoft.Authorization/roleAssignments", "name": "e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9", + "principalId": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2019-03-26T22:01:02.9176787Z", + "updatedOn": "2019-03-26T22:01:02.9176787Z", "createdBy": "8701e34d-d7c2-459c-b2d7-f3a9c5204818", + "updatedBy": "8701e34d-d7c2-459c-b2d7-f3a9c5204818", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320", + "type": "Microsoft.Authorization/roleAssignments", "name": "4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c", + "principalId": "1f75b9dd-4f1d-4e80-9521-321a8b1f5764", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2019-03-27T00:50:08.3039053Z", + "updatedOn": "2019-03-27T00:50:08.3039053Z", "createdBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", + "updatedBy": "820ba717-9ea7-4147-bc13-1e35af4cc27c", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12", + "type": "Microsoft.Authorization/roleAssignments", "name": "3d01f56e-ee3a-41ed-a775-0e067546cb12"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4", + "principalId": "bec26c10-d462-4862-9537-53c98dd5606c", "principalType": "Group", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2022-06-28T23:11:28.9217618Z", + "updatedOn": "2022-06-28T23:11:28.9217618Z", "createdBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", + "updatedBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be", + "type": "Microsoft.Authorization/roleAssignments", "name": "869183bd-893a-46f9-bb02-45e48b13f1be"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4", + "principalId": "4e7ce0ab-3f80-4c90-834e-047bb8b21564", "principalType": "Group", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2023-09-15T21:41:54.7021549Z", + "updatedOn": "2023-09-15T21:41:54.7021549Z", "createdBy": "08958326-d36e-43ae-bcfb-349b337a4483", + "updatedBy": "08958326-d36e-43ae-bcfb-349b337a4483", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/c68e55f3-69fd-4ba8-8dfc-0c62d73e4eb6", + "type": "Microsoft.Authorization/roleAssignments", "name": "c68e55f3-69fd-4ba8-8dfc-0c62d73e4eb6"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "48580f46-cdf7-4677-b38f-13fee8d2b744", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2024-06-25T17:22:19.5530130Z", + "updatedOn": "2024-06-25T17:22:19.5530130Z", "createdBy": "46e80812-4c4e-42fa-88fe-73f37845efe3", + "updatedBy": "46e80812-4c4e-42fa-88fe-73f37845efe3", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/9547ef7c-6294-470a-ad4a-00ab0587ff67", + "type": "Microsoft.Authorization/roleAssignments", "name": "9547ef7c-6294-470a-ad4a-00ab0587ff67"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608", + "principalId": "753548ec-bac1-4b53-8540-167bade337a6", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2024-06-25T17:22:56.3760639Z", + "updatedOn": "2024-06-25T17:22:56.3760639Z", "createdBy": "46e80812-4c4e-42fa-88fe-73f37845efe3", + "updatedBy": "46e80812-4c4e-42fa-88fe-73f37845efe3", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/a9047912-01ff-4276-8ba3-86b00aac5a81", + "type": "Microsoft.Authorization/roleAssignments", "name": "a9047912-01ff-4276-8ba3-86b00aac5a81"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/47d81b3f-7139-46fc-a2e5-228265cc216c", + "principalId": "71c2f92b-fbbc-441b-bb97-84fbf374d8d2", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-09T21:12:09.3390030Z", + "updatedOn": "2024-09-09T21:12:09.3390030Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/1b73abcc-559a-4c11-919d-7ba9003ef4b7", + "type": "Microsoft.Authorization/roleAssignments", "name": "1b73abcc-559a-4c11-919d-7ba9003ef4b7"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cbdd6655-6341-491c-b01b-8b202175cee4", + "principalId": "71c2f92b-fbbc-441b-bb97-84fbf374d8d2", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-09T21:12:33.2531658Z", + "updatedOn": "2024-09-09T21:12:33.2531658Z", "createdBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", + "updatedBy": "2ffe2392-0a52-4093-b041-66b10ebc8317", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/b5c5043d-0d03-4e87-a5ff-74961fb5fc62", + "type": "Microsoft.Authorization/roleAssignments", "name": "b5c5043d-0d03-4e87-a5ff-74961fb5fc62"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab", + "principalId": "7795c402-abeb-42e9-a027-b924b28c67bb", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2025-02-08T12:33:42.6662324Z", + "updatedOn": "2025-02-11T13:31:01.3012787Z", "createdBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", + "updatedBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/c522c42b-842f-538e-b4bb-7a43ba597d28", + "type": "Microsoft.Authorization/roleAssignments", "name": "c522c42b-842f-538e-b4bb-7a43ba597d28"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab", + "principalId": "8f57971f-cf33-4610-ad69-5671e1eb0420", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2025-02-09T00:45:40.2106127Z", + "updatedOn": "2025-02-12T01:41:31.9037195Z", "createdBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", + "updatedBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4e15e659-ab5f-57ed-8187-bd5f3b98edbc", + "type": "Microsoft.Authorization/roleAssignments", "name": "4e15e659-ab5f-57ed-8187-bd5f3b98edbc"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0034c645-cd1a-45a2-9f68-21c21eba9995", + "principalId": "d2d087be-d63b-4971-b4a6-c1b11fda301c", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2025-04-03T21:23:34.8417417Z", + "updatedOn": "2025-04-03T21:23:34.8417417Z", "createdBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", + "updatedBy": "54e5cbe7-4642-409f-a296-a6d41d03ce38", "delegatedManagedIdentityResourceId": + null, "description": "Grant ASM team access for policy remediations."}, "id": + "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/cbe5f8c3-856b-4c1c-990e-27257091d0bf", + "type": "Microsoft.Authorization/roleAssignments", "name": "cbe5f8c3-856b-4c1c-990e-27257091d0bf"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "5829ae32-f640-4f96-a65b-e6acba247856", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2025-05-30T10:53:23.9718004Z", + "updatedOn": "2025-05-30T10:53:23.9718004Z", "createdBy": null, "updatedBy": + null, "delegatedManagedIdentityResourceId": null, "description": null}, "id": + "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3e7686bd-3389-4f3c-9348-1589f3c3ec73", + "type": "Microsoft.Authorization/roleAssignments", "name": "3e7686bd-3389-4f3c-9348-1589f3c3ec73"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f", + "principalId": "5829ae32-f640-4f96-a65b-e6acba247856", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2025-05-30T10:56:35.3529828Z", + "updatedOn": "2025-05-30T10:56:35.3529828Z", "createdBy": null, "updatedBy": + null, "delegatedManagedIdentityResourceId": null, "description": null}, "id": + "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/6386bd4c-4ba7-45cd-8640-1036f4bb112d", + "type": "Microsoft.Authorization/roleAssignments", "name": "6386bd4c-4ba7-45cd-8640-1036f4bb112d"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "71c2f92b-fbbc-441b-bb97-84fbf374d8d2", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2025-06-18T21:46:03.8838376Z", + "updatedOn": "2025-06-18T21:46:03.8838376Z", "createdBy": "ecb3ca67-89e4-4ec6-be01-19241f802632", + "updatedBy": "ecb3ca67-89e4-4ec6-be01-19241f802632", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/b18aa4ed-3cc5-42fc-98dc-c7c69619d9fc", + "type": "Microsoft.Authorization/roleAssignments", "name": "b18aa4ed-3cc5-42fc-98dc-c7c69619d9fc"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9", + "principalId": "7065961c-d3a8-4346-985c-12cd2dec2994", "principalType": "User", + "scope": "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod", + "condition": null, "conditionVersion": null, "createdOn": "2025-08-14T22:25:11.0422475Z", + "updatedOn": "2025-08-14T22:25:11.0422475Z", "createdBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", + "updatedBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", "delegatedManagedIdentityResourceId": + null, "description": "Validate the assignment on the test policy"}, "id": + "/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/be309408-9eaa-49de-89f0-ca8e7b5c0e76", + "type": "Microsoft.Authorization/roleAssignments", "name": "be309408-9eaa-49de-89f0-ca8e7b5c0e76"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1823dd4f-9b8c-4ab6-ab4e-7397a3684615", + "principalId": "5e07876d-c565-4e75-bc65-1a65ae48304e", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2025-03-11T17:35:22.2000461Z", + "updatedOn": "2025-03-11T17:35:22.2000461Z", "createdBy": "bf803fce-d6da-4515-a406-9682823fd96a", + "updatedBy": "bf803fce-d6da-4515-a406-9682823fd96a", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/35053ae6-722f-4161-918a-0c8fd8a042db", + "type": "Microsoft.Authorization/roleAssignments", "name": "35053ae6-722f-4161-918a-0c8fd8a042db"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9", + "principalId": "38ff3154-4977-42d0-82ab-e38d1f3719c5", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2025-04-14T20:07:13.3411027Z", + "updatedOn": "2025-04-14T20:07:13.3411027Z", "createdBy": "a0d72534-d3a9-42cd-8f3f-27c1ffa5bedb", + "updatedBy": "a0d72534-d3a9-42cd-8f3f-27c1ffa5bedb", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/1bce5a64-e141-485c-b259-2f69575d0c69", + "type": "Microsoft.Authorization/roleAssignments", "name": "1bce5a64-e141-485c-b259-2f69575d0c69"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8", + "principalId": "cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2025-04-22T20:14:15.5336665Z", + "updatedOn": "2025-04-22T20:14:15.5336665Z", "createdBy": "b3d441fb-e998-494d-a72b-9c24eabd0cde", + "updatedBy": "b3d441fb-e998-494d-a72b-9c24eabd0cde", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/50011531-5d98-4894-a44b-191b2741f9cc", + "type": "Microsoft.Authorization/roleAssignments", "name": "50011531-5d98-4894-a44b-191b2741f9cc"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064", + "principalId": "cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2025-04-22T20:14:46.5887491Z", + "updatedOn": "2025-04-22T20:14:46.5887491Z", "createdBy": "b3d441fb-e998-494d-a72b-9c24eabd0cde", + "updatedBy": "b3d441fb-e998-494d-a72b-9c24eabd0cde", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/53b21571-8cee-4a05-b550-c6bd7f515bc9", + "type": "Microsoft.Authorization/roleAssignments", "name": "53b21571-8cee-4a05-b550-c6bd7f515bc9"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "ede5fc7f-18df-4704-801c-021821b9e321", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2025-06-20T21:01:13.4299245Z", + "updatedOn": "2025-06-20T21:01:13.4299245Z", "createdBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", + "updatedBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", "delegatedManagedIdentityResourceId": + null, "description": "Creating role assignment from RBAC Extension"}, "id": + "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/2b2addb5-8ea4-417e-986b-30ada26d3d0c", + "type": "Microsoft.Authorization/roleAssignments", "name": "2b2addb5-8ea4-417e-986b-30ada26d3d0c"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "f30ed716-f4cd-4444-8d4e-9bf024a54740", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2025-06-20T21:01:13.5734432Z", + "updatedOn": "2025-06-20T21:01:13.5734432Z", "createdBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", + "updatedBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", "delegatedManagedIdentityResourceId": + null, "description": "Creating role assignment from RBAC Extension"}, "id": + "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/7ecf3cf5-d277-485d-a2e9-f53e76a8ada3", + "type": "Microsoft.Authorization/roleAssignments", "name": "7ecf3cf5-d277-485d-a2e9-f53e76a8ada3"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de24f270-c24e-43bb-bece-2b717f047e34", + "principalId": "ede5fc7f-18df-4704-801c-021821b9e321", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2025-06-23T23:36:48.6952965Z", + "updatedOn": "2025-06-23T23:36:48.6952965Z", "createdBy": "10127262-241f-48af-a706-d2afbac3bec0", + "updatedBy": "10127262-241f-48af-a706-d2afbac3bec0", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/6de88439-bace-41c1-a432-3b26b9b31ea9", + "type": "Microsoft.Authorization/roleAssignments", "name": "6de88439-bace-41c1-a432-3b26b9b31ea9"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2431c6cc-cf29-4146-86ae-5ac1c2e303b2", + "principalId": "ede5fc7f-18df-4704-801c-021821b9e321", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2025-06-23T23:38:50.1910111Z", + "updatedOn": "2025-06-23T23:38:50.1910111Z", "createdBy": "10127262-241f-48af-a706-d2afbac3bec0", + "updatedBy": "10127262-241f-48af-a706-d2afbac3bec0", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/f9dde4b6-2e59-4742-b66b-6d8a8ba8faa1", + "type": "Microsoft.Authorization/roleAssignments", "name": "f9dde4b6-2e59-4742-b66b-6d8a8ba8faa1"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d224f7c-5c93-4466-b116-8c0c62090d0d", + "principalId": "526cce61-401e-4709-9918-7888208dbe55", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2025-07-09T16:45:31.6497349Z", + "updatedOn": "2025-07-09T16:45:31.6497349Z", "createdBy": "10127262-241f-48af-a706-d2afbac3bec0", + "updatedBy": "10127262-241f-48af-a706-d2afbac3bec0", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/1ef9dc63-f54e-4ae6-8873-71b9e2969c32", + "type": "Microsoft.Authorization/roleAssignments", "name": "1ef9dc63-f54e-4ae6-8873-71b9e2969c32"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/793583af-211e-4076-8f72-6e93327872f9", + "principalId": "1ab51ec4-3596-49cf-8efb-b4419572cc39", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2025-07-09T18:03:07.9184866Z", + "updatedOn": "2025-07-09T18:03:07.9184866Z", "createdBy": "10127262-241f-48af-a706-d2afbac3bec0", + "updatedBy": "10127262-241f-48af-a706-d2afbac3bec0", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/cbc761f9-33fc-48fd-a9e5-985ef31605bd", + "type": "Microsoft.Authorization/roleAssignments", "name": "cbc761f9-33fc-48fd-a9e5-985ef31605bd"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "c798416e-094a-4d09-be9a-ed93adb47d31", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2025-08-13T18:27:19.7856046Z", + "updatedOn": "2025-08-13T18:27:19.7856046Z", "createdBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", + "updatedBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", "delegatedManagedIdentityResourceId": + null, "description": "Creating role assignment from RBAC Extension"}, "id": + "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/d8bad98a-e2b1-4db3-8f24-7423d084f326", + "type": "Microsoft.Authorization/roleAssignments", "name": "d8bad98a-e2b1-4db3-8f24-7423d084f326"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "ce2366a6-64d7-441b-939c-c9d23f91cccd", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2020-03-12T20:43:06.5941189Z", + "updatedOn": "2020-03-12T20:43:06.5941189Z", "createdBy": "606f48c8-d219-4875-991d-ae6befaf0756", + "updatedBy": "606f48c8-d219-4875-991d-ae6befaf0756", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b", + "type": "Microsoft.Authorization/roleAssignments", "name": "ad9e2cd7-0ff7-4931-9b17-656c8f17934b"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "b325d340-14f0-412a-8753-4868e914902f", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2024-04-17T22:25:31.4437352Z", + "updatedOn": "2024-04-17T22:25:31.4437352Z", "createdBy": "b3d441fb-e998-494d-a72b-9c24eabd0cde", + "updatedBy": "b3d441fb-e998-494d-a72b-9c24eabd0cde", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/6aa7e5e7-bbdf-42ec-ab01-21cf9585ed97", + "type": "Microsoft.Authorization/roleAssignments", "name": "6aa7e5e7-bbdf-42ec-ab01-21cf9585ed97"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", + "principalId": "274871fc-ab7d-4860-99b6-e4ceff4883bb", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2024-05-30T21:35:32.6579323Z", + "updatedOn": "2024-05-30T21:35:32.6579323Z", "createdBy": "0cf7b301-43f3-4b77-8fa3-533ef1ad19fa", + "updatedBy": "0cf7b301-43f3-4b77-8fa3-533ef1ad19fa", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/f9085458-9261-4821-b4b0-c6ddba2af3d1", + "type": "Microsoft.Authorization/roleAssignments", "name": "f9085458-9261-4821-b4b0-c6ddba2af3d1"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab", + "principalId": "ff29f09e-a8be-4afc-b627-d02fcaf6c28d", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2024-08-14T19:04:17.9473811Z", + "updatedOn": "2024-08-14T19:04:17.9473811Z", "createdBy": "b3d441fb-e998-494d-a72b-9c24eabd0cde", + "updatedBy": "b3d441fb-e998-494d-a72b-9c24eabd0cde", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/73f1e96c-b727-4776-80a5-02dbe581a565", + "type": "Microsoft.Authorization/roleAssignments", "name": "73f1e96c-b727-4776-80a5-02dbe581a565"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9", + "principalId": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2023-02-21T22:32:46.2324804Z", + "updatedOn": "2023-02-21T22:32:46.2324804Z", "createdBy": "7f1579a6-c648-43a1-ac1e-0c3020dd9b8e", + "updatedBy": "7f1579a6-c648-43a1-ac1e-0c3020dd9b8e", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3", + "type": "Microsoft.Authorization/roleAssignments", "name": "df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772", + "principalId": "2dd1ea73-4024-489e-83a4-45cb3e962f69", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2023-05-04T20:23:16.3808369Z", + "updatedOn": "2023-05-04T20:23:16.3808369Z", "createdBy": "fa00c2de-57d5-4527-9254-4d513f482d0a", + "updatedBy": "fa00c2de-57d5-4527-9254-4d513f482d0a", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d", + "type": "Microsoft.Authorization/roleAssignments", "name": "59109645-7b2b-4278-831a-2e4627ec603d"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd", + "principalId": "cf2265bb-8d4f-4ca9-ae95-fc5bb25aa339", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2024-01-17T20:03:31.9828324Z", + "updatedOn": "2024-01-17T20:03:31.9828324Z", "createdBy": "0cf7b301-43f3-4b77-8fa3-533ef1ad19fa", + "updatedBy": "0cf7b301-43f3-4b77-8fa3-533ef1ad19fa", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/fe395c31-2241-4055-9536-d814d39b801b", + "type": "Microsoft.Authorization/roleAssignments", "name": "fe395c31-2241-4055-9536-d814d39b801b"}, + {"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", + "principalId": "80bef37c-0c59-474b-964a-e9eb09f913f5", "principalType": "ServicePrincipal", + "scope": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47", + "condition": null, "conditionVersion": null, "createdOn": "2024-09-27T18:17:31.8607675Z", + "updatedOn": "2024-09-27T18:17:31.8607675Z", "createdBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", + "updatedBy": "1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2", "delegatedManagedIdentityResourceId": + null, "description": null}, "id": "/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/97983db6-32d1-49aa-ac4b-45452f2c7913", + "type": "Microsoft.Authorization/roleAssignments", "name": "97983db6-32d1-49aa-ac4b-45452f2c7913"}]}' + headers: + cache-control: + - no-cache + content-length: + - '121177' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:12:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/e8833b21-59f6-45ec-b58e-124495033990 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F53C61311D66441C95B3C02EA8F99AAC Ref B: MAA201060515029 Ref C: 2025-08-15T03:12:11Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "kind": "Base", "properties": {"kubernetesVersion": + "", "dnsPrefix": "ImportAKST-cli-local-test-r-77d5ab", "agentPoolProfiles": + [{"count": 1, "vmSize": "", "osDiskSizeGB": 0, "workloadRuntime": "OCIContainer", + "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/virtualNetworks/junbchen-test-dev-vnet/subnets/default", + "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": + false, "enableCustomCATrust": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": + "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "nodeInitializationTaints": + [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "networkProfile": {}, "securityProfile": {"sshAccess": "localuser"}, + "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDrBgKkL4uf19PGAGvXYPyTPhpWw/py9d1B94wzHPri98pBTicWdrdocc9eEKSCAcmOAWgslD5zjEkYViq4P9l9e0H6hbM0FlA3iYDnoC5B0r8PEh4GJd3Yem0OTtyPW7oJUZHWc28qqHi9HA2hBPG9YwurtCzLJsWC1RfNZymYJK872u2a6youT2iFIZZRlSz/GemIHlUKoYJ+QG7fe3mVDuWpd3LRl5NjRHdubRN5mLBakfjhT/IjIo8CtNKu/giHpgNM3TDpSJ3xdPKBqT7fypCkvWocgcJ9DziI1FHo6W/ATUC3qkXOisQCT3cbC+9uGURhtaMTI3GYCI+NObi3"}]}}, + "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", + "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": {"publicIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/publicIPAddresses/junbchen-test-dev-pip"}]}, + "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30, "backendPoolType": + "NodeIPConfiguration", "clusterServiceLoadBalancerHealthProbeMode": "ServiceNodePort"}}, + "autoUpgradeProfile": {"nodeOSUpgradeChannel": "NodeImage"}, "disableLocalAccounts": + false, "securityProfile": {"imageCleaner": {"enabled": true, "intervalHours": + 168}}, "storageProfile": {}, "bootstrapProfile": {"artifactSource": "Direct"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '2310' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003?api-version=2025-04-02-preview + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003", + "location": "westus2", "name": "ImportAKSTest000003", "tags": {"AzSecPackAutoConfigReady": + "true", "EnableAzSecPackIdentityPolicy": "true"}, "type": "Microsoft.ContainerService/ManagedClusters", + "kind": "Base", "properties": {"provisioningState": "Creating", "powerState": + {"code": "Running"}, "kubernetesVersion": "1.32", "currentKubernetesVersion": + "1.32.6", "dnsPrefix": "ImportAKST-cli-local-test-r-77d5ab", "fqdn": "importakst-cli-local-test-r-77d5ab-d98oj67e.hcp.westus2.azmk8s.io", + "azurePortalFQDN": "importakst-cli-local-test-r-77d5ab-d98oj67e.portal.hcp.westus2.azmk8s.io", + "agentPoolProfiles": [{"name": "nodepool1", "count": 1, "vmSize": "Standard_D8lds_v5", + "osDiskSizeGB": 300, "osDiskType": "Ephemeral", "kubeletDiskType": "OS", "workloadRuntime": + "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/virtualNetworks/junbchen-test-dev-vnet/subnets/default", + "maxPods": 250, "type": "VirtualMachineScaleSets", "enableAutoScaling": false, + "scaleDownMode": "Delete", "provisioningState": "Creating", "powerState": + {"code": "Running"}, "orchestratorVersion": "1.32", "currentOrchestratorVersion": + "1.32.6", "enableNodePublicIP": false, "enableCustomCATrust": false, "nodeLabels": + {}, "mode": "System", "enableEncryptionAtHost": false, "enableUltraSSD": false, + "osType": "Linux", "osSKU": "Ubuntu", "nodeImageVersion": "AKSUbuntu-2204gen2containerd-202507.21.0", + "upgradeSettings": {"maxSurge": "10%", "maxUnavailable": "0"}, "enableFIPS": + false, "networkProfile": {}, "securityProfile": {"sshAccess": "LocalUser", + "enableVTPM": false, "enableSecureBoot": false}}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDrBgKkL4uf19PGAGvXYPyTPhpWw/py9d1B94wzHPri98pBTicWdrdocc9eEKSCAcmOAWgslD5zjEkYViq4P9l9e0H6hbM0FlA3iYDnoC5B0r8PEh4GJd3Yem0OTtyPW7oJUZHWc28qqHi9HA2hBPG9YwurtCzLJsWC1RfNZymYJK872u2a6youT2iFIZZRlSz/GemIHlUKoYJ+QG7fe3mVDuWpd3LRl5NjRHdubRN5mLBakfjhT/IjIo8CtNKu/giHpgNM3TDpSJ3xdPKBqT7fypCkvWocgcJ9DziI1FHo6W/ATUC3qkXOisQCT3cbC+9uGURhtaMTI3GYCI+NObi3"}]}}, + "servicePrincipalProfile": {"clientId": "msi"}, "nodeResourceGroup": "MC_clitest.rg000001_ImportAKSTest000003_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": + {"networkPlugin": "azure", "networkPluginMode": "overlay", "networkPolicy": + "none", "networkDataplane": "azure", "loadBalancerSku": "standard", "loadBalancerProfile": + {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/publicIPAddresses/junbchen-test-dev-pip"}]}, + "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30, "backendPoolType": + "nodeIPConfiguration", "clusterServiceLoadBalancerHealthProbeMode": "ServiceNodePort"}, + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "podCidrs": ["10.244.0.0/16"], + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"], "podLinkLocalAccess": + "IMDS"}, "maxAgentPools": 100, "autoUpgradeProfile": {"nodeOSUpgradeChannel": + "NodeImage"}, "disableLocalAccounts": false, "securityProfile": {"imageCleaner": + {"enabled": true, "intervalHours": 168}}, "storageProfile": {"diskCSIDriver": + {"enabled": true, "version": "v1"}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}, "oidcIssuerProfile": {"enabled": false}, "workloadAutoScalerProfile": + {}, "metricsProfile": {"costAnalysis": {"enabled": false}}, "resourceUID": + "689ea5988ed2dd0001b48bf3", "controlPlanePluginProfiles": {"azure-monitor-metrics-ccp": + {"enableV2": true}, "gpu-provisioner": {"enableV2": true}, "karpenter": {"enableV2": + true}, "kubelet-serving-csr-approver": {"enableV2": true}, "live-patching-controller": + {"enableV2": true}, "static-egress-controller": {"enableV2": true}}, "nodeProvisioningProfile": + {"mode": "Manual", "defaultNodePools": "Auto"}, "bootstrapProfile": {"artifactSource": + "Direct"}}, "identity": {"type": "SystemAssigned", "principalId": "9138b8b1-614d-4c3a-8a79-001ab2bbe55d", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "sku": {"name": "Base", + "tier": "Free"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + cache-control: + - no-cache + content-length: + - '4380' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:12:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/5d075baa-c8b7-4adf-9cb7-dd07db41e8c0 + x-ms-ratelimit-remaining-subscription-global-writes: + - '12000' + x-ms-ratelimit-remaining-subscription-writes: + - '800' + x-msedge-ref: + - 'Ref A: 1E146752C7E14006B7C1F827E3CB0246 Ref B: MAA201060516019 Ref C: 2025-08-15T03:12:13Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + response: + body: + string: '{"name": "f2082279-230c-41ee-bcdf-469e83f0d5ff", "status": "InProgress", + "startTime": "2025-08-15T03:12:24.8656055Z"}' + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:12:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/5851464b-ae0c-496e-9524-17c47985e964 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: E151DEFD9C0049AB8E5B8120FFC4BD8F Ref B: MAA201060514027 Ref C: 2025-08-15T03:12:26Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + response: + body: + string: '{"name": "f2082279-230c-41ee-bcdf-469e83f0d5ff", "status": "InProgress", + "startTime": "2025-08-15T03:12:24.8656055Z"}' + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:12:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/8cf3fe71-f018-489a-97ea-34e0109a0f9b + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 273D8EA03A6A498E8E59B958CE94BA9F Ref B: MAA201060515023 Ref C: 2025-08-15T03:12:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + response: + body: + string: '{"name": "f2082279-230c-41ee-bcdf-469e83f0d5ff", "status": "InProgress", + "startTime": "2025-08-15T03:12:24.8656055Z"}' + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:13:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/29204a29-b671-4a58-bdc0-21a237770b46 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: FE886F8F0380496EB730C9CC5A9654A8 Ref B: MAA201060515009 Ref C: 2025-08-15T03:13:29Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + response: + body: + string: '{"name": "f2082279-230c-41ee-bcdf-469e83f0d5ff", "status": "InProgress", + "startTime": "2025-08-15T03:12:24.8656055Z"}' + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:14:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/15889b42-37d0-4496-a97b-2adc53e31e3d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: EFA4F0F8A3484323947F2F94ACE244B3 Ref B: MAA201060515029 Ref C: 2025-08-15T03:14:01Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + response: + body: + string: '{"name": "f2082279-230c-41ee-bcdf-469e83f0d5ff", "status": "InProgress", + "startTime": "2025-08-15T03:12:24.8656055Z"}' + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:14:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/876e6d16-a748-4584-92d4-c8cb0705076d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B0FF87260E11441AA4B22A0FFFC8BC3E Ref B: MAA201060514029 Ref C: 2025-08-15T03:14:32Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + response: + body: + string: '{"name": "f2082279-230c-41ee-bcdf-469e83f0d5ff", "status": "InProgress", + "startTime": "2025-08-15T03:12:24.8656055Z"}' + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:15:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/317c84b2-1ecb-4ee3-b5c0-0a7c1a0ef94c + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 2327F4E03A4A46CD9B9EBE3C6307A0B4 Ref B: MAA201060516027 Ref C: 2025-08-15T03:15:03Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + response: + body: + string: '{"name": "f2082279-230c-41ee-bcdf-469e83f0d5ff", "status": "InProgress", + "startTime": "2025-08-15T03:12:24.8656055Z"}' + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:15:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/a048e438-1427-436a-b28d-2b99dc362394 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A0962B16DC124A93A3DFE9BF6D57CC2D Ref B: MAA201060513045 Ref C: 2025-08-15T03:15:35Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + response: + body: + string: '{"name": "f2082279-230c-41ee-bcdf-469e83f0d5ff", "status": "InProgress", + "startTime": "2025-08-15T03:12:24.8656055Z"}' + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:16:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/e2d0cd9f-2979-4fac-bc9e-5bc041b8abd8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 9887803729A54E3E9F5CD16396B47663 Ref B: MAA201060516025 Ref C: 2025-08-15T03:16:06Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + response: + body: + string: '{"name": "f2082279-230c-41ee-bcdf-469e83f0d5ff", "status": "InProgress", + "startTime": "2025-08-15T03:12:24.8656055Z"}' + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:16:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/be5f498e-06a7-4558-bc0b-c5d2dd0c2e9d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BF3BBDA27FC044E9A9DD09FB0633C46E Ref B: MAA201060514035 Ref C: 2025-08-15T03:16:37Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + response: + body: + string: '{"name": "f2082279-230c-41ee-bcdf-469e83f0d5ff", "status": "InProgress", + "startTime": "2025-08-15T03:12:24.8656055Z"}' + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:17:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/b13b9107-45d6-4221-bfca-1657f6665b56 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 76DA86FDE78149A3BF4D712AC968567D Ref B: MAA201060515009 Ref C: 2025-08-15T03:17:08Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + response: + body: + string: '{"name": "f2082279-230c-41ee-bcdf-469e83f0d5ff", "status": "InProgress", + "startTime": "2025-08-15T03:12:24.8656055Z"}' + headers: + cache-control: + - no-cache + content-length: + - '117' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:17:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/3c2380f8-276d-4be4-aba7-d147f28faa10 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 57F93A625CBD4F6FA030618FC5929CEF Ref B: MAA201060516037 Ref C: 2025-08-15T03:17:40Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2082279-230c-41ee-bcdf-469e83f0d5ff?api-version=2025-03-01&t=638908243461448643&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=dZY9KbYPaEwhLzc_oubHWPWjdpVJlpaItAr6ErXyQ1q__tesW98SttaM6eepSAdudxn2rwtQFauoawifDRv8aeFrozok88QIOHanbVPHyLp30h4oRAGJS6p8MB-ReeV53IcxoSwsz6K2aiixuy2_LEiS6mllaIsOLgl8OQ6OZVuDOwE4QDlc6V5bqGUtyuX4DAN7E9zU_3UpDWWyzlfAS7U7bYkspFDjlp9mnfcjlO73KlbnLgKkoY6lo9AdkBZ4g9QloZdj1_z5HZdDdLO6xUcrPUSGZGkMz7UETGW0SX3DF20rXJd9TFulqM48etfySBrKx7ZoavPKxmsc2ujNPQ&h=IYP5b6j9ynueMQxJIm5lbhjJDYk9Doc-YLdrESf1fOE + response: + body: + string: '{"name": "f2082279-230c-41ee-bcdf-469e83f0d5ff", "status": "Succeeded", + "startTime": "2025-08-15T03:12:24.8656055Z", "endTime": "2025-08-15T03:17:50.027107Z"}' + headers: + cache-control: + - no-cache + content-length: + - '158' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:18:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/be4f4fb0-b9b9-448f-bb8a-ae51d8f4a535 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 6694760DCD524DD1B5C3550D9F9115D9 Ref B: MAA201060515039 Ref C: 2025-08-15T03:18:11Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --node-count --generate-ssh-keys --enable-managed-identity --enable-image-cleaner + --node-os-upgrade-channel --load-balancer-outbound-ips --vnet-subnet-id + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003?api-version=2025-04-02-preview + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003", + "location": "westus2", "name": "ImportAKSTest000003", "tags": {"AzSecPackAutoConfigReady": + "true", "EnableAzSecPackIdentityPolicy": "true"}, "type": "Microsoft.ContainerService/ManagedClusters", + "kind": "Base", "properties": {"provisioningState": "Succeeded", "powerState": + {"code": "Running"}, "kubernetesVersion": "1.32", "currentKubernetesVersion": + "1.32.6", "dnsPrefix": "ImportAKST-cli-local-test-r-77d5ab", "fqdn": "importakst-cli-local-test-r-77d5ab-d98oj67e.hcp.westus2.azmk8s.io", + "azurePortalFQDN": "importakst-cli-local-test-r-77d5ab-d98oj67e.portal.hcp.westus2.azmk8s.io", + "agentPoolProfiles": [{"name": "nodepool1", "count": 1, "vmSize": "Standard_D8lds_v5", + "osDiskSizeGB": 300, "osDiskType": "Ephemeral", "kubeletDiskType": "OS", "workloadRuntime": + "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/virtualNetworks/junbchen-test-dev-vnet/subnets/default", + "maxPods": 250, "type": "VirtualMachineScaleSets", "enableAutoScaling": false, + "scaleDownMode": "Delete", "provisioningState": "Succeeded", "powerState": + {"code": "Running"}, "orchestratorVersion": "1.32", "currentOrchestratorVersion": + "1.32.6", "enableNodePublicIP": false, "enableCustomCATrust": false, "mode": + "System", "enableEncryptionAtHost": false, "enableUltraSSD": false, "osType": + "Linux", "osSKU": "Ubuntu", "nodeImageVersion": "AKSUbuntu-2204gen2containerd-202507.21.0", + "upgradeSettings": {"maxSurge": "10%", "maxUnavailable": "0"}, "enableFIPS": + false, "networkProfile": {}, "securityProfile": {"sshAccess": "LocalUser", + "enableVTPM": false, "enableSecureBoot": false}, "eTag": "975a9d4b-d8cc-4c73-bae2-5eb583fc6c2d"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDrBgKkL4uf19PGAGvXYPyTPhpWw/py9d1B94wzHPri98pBTicWdrdocc9eEKSCAcmOAWgslD5zjEkYViq4P9l9e0H6hbM0FlA3iYDnoC5B0r8PEh4GJd3Yem0OTtyPW7oJUZHWc28qqHi9HA2hBPG9YwurtCzLJsWC1RfNZymYJK872u2a6youT2iFIZZRlSz/GemIHlUKoYJ+QG7fe3mVDuWpd3LRl5NjRHdubRN5mLBakfjhT/IjIo8CtNKu/giHpgNM3TDpSJ3xdPKBqT7fypCkvWocgcJ9DziI1FHo6W/ATUC3qkXOisQCT3cbC+9uGURhtaMTI3GYCI+NObi3"}]}}, + "servicePrincipalProfile": {"clientId": "msi"}, "nodeResourceGroup": "MC_clitest.rg000001_ImportAKSTest000003_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": + {"networkPlugin": "azure", "networkPluginMode": "overlay", "networkPolicy": + "none", "networkDataplane": "azure", "loadBalancerSku": "standard", "loadBalancerProfile": + {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/publicIPAddresses/junbchen-test-dev-pip"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/publicIPAddresses/junbchen-test-dev-pip"}], + "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30, "backendPoolType": + "nodeIPConfiguration", "clusterServiceLoadBalancerHealthProbeMode": "ServiceNodePort"}, + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "podCidrs": ["10.244.0.0/16"], + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"], "podLinkLocalAccess": + "IMDS"}, "maxAgentPools": 100, "identityProfile": {"kubeletidentity": {"resourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest.rg000001_ImportAKSTest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ImportAKSTest000003-agentpool", + "clientId": "0b42238a-1f4a-4d5a-9c49-c7e8df9bd644", "objectId": "38097874-3592-43b6-af85-c56e95bf9dc3"}}, + "autoUpgradeProfile": {"nodeOSUpgradeChannel": "NodeImage"}, "disableLocalAccounts": + false, "securityProfile": {"imageCleaner": {"enabled": true, "intervalHours": + 168}}, "storageProfile": {"diskCSIDriver": {"enabled": true, "version": "v1"}, + "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": true}}, + "oidcIssuerProfile": {"enabled": false}, "workloadAutoScalerProfile": {}, + "metricsProfile": {"costAnalysis": {"enabled": false}}, "resourceUID": "689ea5988ed2dd0001b48bf3", + "controlPlanePluginProfiles": {"azure-monitor-metrics-ccp": {"enableV2": true}, + "gpu-provisioner": {"enableV2": true}, "karpenter": {"enableV2": true}, "kubelet-serving-csr-approver": + {"enableV2": true}, "live-patching-controller": {"enableV2": true}, "static-egress-controller": + {"enableV2": true}}, "nodeProvisioningProfile": {"mode": "Manual", "defaultNodePools": + "Auto"}, "bootstrapProfile": {"artifactSource": "Direct"}}, "identity": {"type": + "SystemAssigned", "principalId": "9138b8b1-614d-4c3a-8a79-001ab2bbe55d", "tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "sku": {"name": "Base", "tier": "Free"}, + "eTag": "ae18fbef-8542-402e-8a34-883f1c4dd361"}' + headers: + cache-control: + - no-cache + content-length: + - '5009' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:18:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: E3416B902F6740408227B8D6B4B5538E Ref B: MAA201060513033 Ref C: 2025-08-15T03:18:13Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003?api-version=2025-04-02-preview + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003", + "location": "westus2", "name": "ImportAKSTest000003", "tags": {"AzSecPackAutoConfigReady": + "true", "EnableAzSecPackIdentityPolicy": "true"}, "type": "Microsoft.ContainerService/ManagedClusters", + "kind": "Base", "properties": {"provisioningState": "Succeeded", "powerState": + {"code": "Running"}, "kubernetesVersion": "1.32", "currentKubernetesVersion": + "1.32.6", "dnsPrefix": "ImportAKST-cli-local-test-r-77d5ab", "fqdn": "importakst-cli-local-test-r-77d5ab-d98oj67e.hcp.westus2.azmk8s.io", + "azurePortalFQDN": "importakst-cli-local-test-r-77d5ab-d98oj67e.portal.hcp.westus2.azmk8s.io", + "agentPoolProfiles": [{"name": "nodepool1", "count": 1, "vmSize": "Standard_D8lds_v5", + "osDiskSizeGB": 300, "osDiskType": "Ephemeral", "kubeletDiskType": "OS", "workloadRuntime": + "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/virtualNetworks/junbchen-test-dev-vnet/subnets/default", + "maxPods": 250, "type": "VirtualMachineScaleSets", "enableAutoScaling": false, + "scaleDownMode": "Delete", "provisioningState": "Succeeded", "powerState": + {"code": "Running"}, "orchestratorVersion": "1.32", "currentOrchestratorVersion": + "1.32.6", "enableNodePublicIP": false, "enableCustomCATrust": false, "mode": + "System", "enableEncryptionAtHost": false, "enableUltraSSD": false, "osType": + "Linux", "osSKU": "Ubuntu", "nodeImageVersion": "AKSUbuntu-2204gen2containerd-202507.21.0", + "upgradeSettings": {"maxSurge": "10%", "maxUnavailable": "0"}, "enableFIPS": + false, "networkProfile": {}, "securityProfile": {"sshAccess": "LocalUser", + "enableVTPM": false, "enableSecureBoot": false}, "eTag": "975a9d4b-d8cc-4c73-bae2-5eb583fc6c2d"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDrBgKkL4uf19PGAGvXYPyTPhpWw/py9d1B94wzHPri98pBTicWdrdocc9eEKSCAcmOAWgslD5zjEkYViq4P9l9e0H6hbM0FlA3iYDnoC5B0r8PEh4GJd3Yem0OTtyPW7oJUZHWc28qqHi9HA2hBPG9YwurtCzLJsWC1RfNZymYJK872u2a6youT2iFIZZRlSz/GemIHlUKoYJ+QG7fe3mVDuWpd3LRl5NjRHdubRN5mLBakfjhT/IjIo8CtNKu/giHpgNM3TDpSJ3xdPKBqT7fypCkvWocgcJ9DziI1FHo6W/ATUC3qkXOisQCT3cbC+9uGURhtaMTI3GYCI+NObi3"}]}}, + "servicePrincipalProfile": {"clientId": "msi"}, "nodeResourceGroup": "MC_clitest.rg000001_ImportAKSTest000003_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": + {"networkPlugin": "azure", "networkPluginMode": "overlay", "networkPolicy": + "none", "networkDataplane": "azure", "loadBalancerSku": "standard", "loadBalancerProfile": + {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/publicIPAddresses/junbchen-test-dev-pip"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/publicIPAddresses/junbchen-test-dev-pip"}], + "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30, "backendPoolType": + "nodeIPConfiguration", "clusterServiceLoadBalancerHealthProbeMode": "ServiceNodePort"}, + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "podCidrs": ["10.244.0.0/16"], + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"], "podLinkLocalAccess": + "IMDS"}, "maxAgentPools": 100, "identityProfile": {"kubeletidentity": {"resourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest.rg000001_ImportAKSTest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ImportAKSTest000003-agentpool", + "clientId": "0b42238a-1f4a-4d5a-9c49-c7e8df9bd644", "objectId": "38097874-3592-43b6-af85-c56e95bf9dc3"}}, + "autoUpgradeProfile": {"nodeOSUpgradeChannel": "NodeImage"}, "disableLocalAccounts": + false, "securityProfile": {"imageCleaner": {"enabled": true, "intervalHours": + 168}}, "storageProfile": {"diskCSIDriver": {"enabled": true, "version": "v1"}, + "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": true}}, + "oidcIssuerProfile": {"enabled": false}, "workloadAutoScalerProfile": {}, + "metricsProfile": {"costAnalysis": {"enabled": false}}, "resourceUID": "689ea5988ed2dd0001b48bf3", + "controlPlanePluginProfiles": {"azure-monitor-metrics-ccp": {"enableV2": true}, + "gpu-provisioner": {"enableV2": true}, "karpenter": {"enableV2": true}, "kubelet-serving-csr-approver": + {"enableV2": true}, "live-patching-controller": {"enableV2": true}, "static-egress-controller": + {"enableV2": true}}, "nodeProvisioningProfile": {"mode": "Manual", "defaultNodePools": + "Auto"}, "bootstrapProfile": {"artifactSource": "Direct"}}, "identity": {"type": + "SystemAssigned", "principalId": "9138b8b1-614d-4c3a-8a79-001ab2bbe55d", "tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "sku": {"name": "Base", "tier": "Free"}, + "eTag": "ae18fbef-8542-402e-8a34-883f1c4dd361"}' + headers: + cache-control: + - no-cache + content-length: + - '5009' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:18:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0BBAF4FA858649039699CA0F45D21DC0 Ref B: MAA201060516017 Ref C: 2025-08-15T03:18:15Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks command invoke + Connection: + - keep-alive + ParameterSetName: + - -g -n --command + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003?api-version=2025-05-01 + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003", + "location": "westus2", "name": "ImportAKSTest000003", "tags": {"AzSecPackAutoConfigReady": + "true", "EnableAzSecPackIdentityPolicy": "true"}, "type": "Microsoft.ContainerService/ManagedClusters", + "properties": {"provisioningState": "Succeeded", "powerState": {"code": "Running"}, + "kubernetesVersion": "1.32", "currentKubernetesVersion": "1.32.6", "dnsPrefix": + "ImportAKST-cli-local-test-r-77d5ab", "fqdn": "importakst-cli-local-test-r-77d5ab-d98oj67e.hcp.westus2.azmk8s.io", + "azurePortalFQDN": "importakst-cli-local-test-r-77d5ab-d98oj67e.portal.hcp.westus2.azmk8s.io", + "agentPoolProfiles": [{"name": "nodepool1", "count": 1, "vmSize": "Standard_D8lds_v5", + "osDiskSizeGB": 300, "osDiskType": "Ephemeral", "kubeletDiskType": "OS", "workloadRuntime": + "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/virtualNetworks/junbchen-test-dev-vnet/subnets/default", + "maxPods": 250, "type": "VirtualMachineScaleSets", "enableAutoScaling": false, + "scaleDownMode": "Delete", "provisioningState": "Succeeded", "powerState": + {"code": "Running"}, "orchestratorVersion": "1.32", "currentOrchestratorVersion": + "1.32.6", "enableNodePublicIP": false, "mode": "System", "enableEncryptionAtHost": + false, "enableUltraSSD": false, "osType": "Linux", "osSKU": "Ubuntu", "nodeImageVersion": + "AKSUbuntu-2204gen2containerd-202507.21.0", "upgradeSettings": {"maxSurge": + "10%", "maxUnavailable": "0"}, "enableFIPS": false, "networkProfile": {}, + "securityProfile": {"enableVTPM": false, "enableSecureBoot": false}}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDrBgKkL4uf19PGAGvXYPyTPhpWw/py9d1B94wzHPri98pBTicWdrdocc9eEKSCAcmOAWgslD5zjEkYViq4P9l9e0H6hbM0FlA3iYDnoC5B0r8PEh4GJd3Yem0OTtyPW7oJUZHWc28qqHi9HA2hBPG9YwurtCzLJsWC1RfNZymYJK872u2a6youT2iFIZZRlSz/GemIHlUKoYJ+QG7fe3mVDuWpd3LRl5NjRHdubRN5mLBakfjhT/IjIo8CtNKu/giHpgNM3TDpSJ3xdPKBqT7fypCkvWocgcJ9DziI1FHo6W/ATUC3qkXOisQCT3cbC+9uGURhtaMTI3GYCI+NObi3"}]}}, + "servicePrincipalProfile": {"clientId": "msi"}, "nodeResourceGroup": "MC_clitest.rg000001_ImportAKSTest000003_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": + {"networkPlugin": "azure", "networkPluginMode": "overlay", "networkPolicy": + "none", "networkDataplane": "azure", "loadBalancerSku": "standard", "loadBalancerProfile": + {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/publicIPAddresses/junbchen-test-dev-pip"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/publicIPAddresses/junbchen-test-dev-pip"}], + "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30, "backendPoolType": + "nodeIPConfiguration"}, "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "podCidrs": ["10.244.0.0/16"], + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "maxAgentPools": + 100, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest.rg000001_ImportAKSTest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ImportAKSTest000003-agentpool", + "clientId": "0b42238a-1f4a-4d5a-9c49-c7e8df9bd644", "objectId": "38097874-3592-43b6-af85-c56e95bf9dc3"}}, + "autoUpgradeProfile": {"nodeOSUpgradeChannel": "NodeImage"}, "disableLocalAccounts": + false, "securityProfile": {"imageCleaner": {"enabled": true, "intervalHours": + 168}}, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}, "oidcIssuerProfile": + {"enabled": false}, "workloadAutoScalerProfile": {}, "resourceUID": "689ea5988ed2dd0001b48bf3", + "metricsProfile": {"costAnalysis": {"enabled": false}}, "nodeProvisioningProfile": + {"mode": "Manual", "defaultNodePools": "Auto"}, "bootstrapProfile": {"artifactSource": + "Direct"}}, "identity": {"type": "SystemAssigned", "principalId": "9138b8b1-614d-4c3a-8a79-001ab2bbe55d", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "sku": {"name": "Base", + "tier": "Free"}}' + headers: + cache-control: + - no-cache + content-length: + - '4429' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:18:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: ABAFF81D0FDC45D4B61AFE41757B90D0 Ref B: MAA201060515017 Ref C: 2025-08-15T03:18:17Z' + status: + code: 200 + message: OK +- request: + body: '{"command": "kubectl create configmap test-config --from-literal=database.host=localhost + --from-literal=database.port=5432 --from-literal=app.name=testapp -n default", + "context": ""}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks command invoke + Connection: + - keep-alive + Content-Length: + - '182' + Content-Type: + - application/json + ParameterSetName: + - -g -n --command + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003/runCommand?api-version=2025-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Aug 2025 03:18:20 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedclusters/ImportAKSTest000003/commandResults/3caf8658d1f24915a821374bfd8bf152?api-version=2025-05-01&t=638908247003452689&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=qd2OFVuu5n0bVg6GtTU-Y9gTuI8t8KQVlHvJyLT6W-iARJlPP0_WXXP1WVuuOUrvLg-7Xw3_pch4jYms8oIh9nCAMb--VFqUntOfWAFfeIpKmSkNgkTnDnWIK6DrTM0ZOFjRshYC7GWvAuT6oz3I2da6gqgvkK9BfeJxNJhpUNY-ypP7YRTqw0IFwWVpgO811HYNip9lqkl3Pbv77siYVbVY5i-1CO6ELohF3D-kwICUAnpyBWxQljC0HWSTKdZ-rlFWS6k7_ChGzIoA2NSaLwz8PlyuP1BXJTCwegjgZVoMzMr1kdep5yZwba36PZgGcVguwBAW7KyZqzNKdM0KjA&h=9ClFzktfhbbkr7_kEGoPWZEkqgKwonr-cYQV9YsOBdY + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/9b925dae-3ce7-4481-b8c3-250698f1c572 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 3A968B279EA04416A9CC55056FB4103E Ref B: MAA201060513045 Ref C: 2025-08-15T03:18:19Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks command invoke + Connection: + - keep-alive + ParameterSetName: + - -g -n --command + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedclusters/ImportAKSTest000003/commandResults/3caf8658d1f24915a821374bfd8bf152?api-version=2025-05-01&t=638908247003452689&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=qd2OFVuu5n0bVg6GtTU-Y9gTuI8t8KQVlHvJyLT6W-iARJlPP0_WXXP1WVuuOUrvLg-7Xw3_pch4jYms8oIh9nCAMb--VFqUntOfWAFfeIpKmSkNgkTnDnWIK6DrTM0ZOFjRshYC7GWvAuT6oz3I2da6gqgvkK9BfeJxNJhpUNY-ypP7YRTqw0IFwWVpgO811HYNip9lqkl3Pbv77siYVbVY5i-1CO6ELohF3D-kwICUAnpyBWxQljC0HWSTKdZ-rlFWS6k7_ChGzIoA2NSaLwz8PlyuP1BXJTCwegjgZVoMzMr1kdep5yZwba36PZgGcVguwBAW7KyZqzNKdM0KjA&h=9ClFzktfhbbkr7_kEGoPWZEkqgKwonr-cYQV9YsOBdY + response: + body: + string: '{"id": "3caf8658d1f24915a821374bfd8bf152", "properties": {"provisioningState": + "Running"}}' + headers: + cache-control: + - no-cache + content-length: + - '90' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:18:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedclusters/ImportAKSTest000003/commandResults/3caf8658d1f24915a821374bfd8bf152?api-version=2025-05-01&t=638908247016990297&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=Ny3DfLYZIeJYbnqn1xWKgzKzhUy3B5oNXcl07Hkk9uPRYaR-bZoplzOQTeb7uQvgKs6U9dAbqXin0pKasK1yX_pPw4cJ-a9g1Ul7FqgmxNI8ZPg-LYkt_IqHH-OA7hyDQ0e11TZUww0scVT4LlCz2esZT__CfPmts5CvxZEFyzD-CGR6Q4En1K1Z3nHmI-Xnmjo9e6ME0pzWjGEJ6KVmSMZX4LfP2N0sf2SHdri6mGKUuzV3US-EuYAZvDYoFoBbS3Hy8sCJGIId0MeYS84wJaNAWlMPqrJLmY28y9VblOWyUHlMQa4PajHPc-ZV44DR8DU0vyCv0rfitmbqo6cjUA&h=X1WvqrFk-Zq4qTSZJzY-yxqoGvDbm49Bt5P4pSpxWfY + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/03e1a34b-d123-4ffa-8830-240cb9e3944d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0BEAA21D5990484D99FDF13A9114AE39 Ref B: MAA201060515029 Ref C: 2025-08-15T03:18:20Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks command invoke + Connection: + - keep-alive + ParameterSetName: + - -g -n --command + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedclusters/ImportAKSTest000003/commandResults/3caf8658d1f24915a821374bfd8bf152?api-version=2025-05-01&t=638908247003452689&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=qd2OFVuu5n0bVg6GtTU-Y9gTuI8t8KQVlHvJyLT6W-iARJlPP0_WXXP1WVuuOUrvLg-7Xw3_pch4jYms8oIh9nCAMb--VFqUntOfWAFfeIpKmSkNgkTnDnWIK6DrTM0ZOFjRshYC7GWvAuT6oz3I2da6gqgvkK9BfeJxNJhpUNY-ypP7YRTqw0IFwWVpgO811HYNip9lqkl3Pbv77siYVbVY5i-1CO6ELohF3D-kwICUAnpyBWxQljC0HWSTKdZ-rlFWS6k7_ChGzIoA2NSaLwz8PlyuP1BXJTCwegjgZVoMzMr1kdep5yZwba36PZgGcVguwBAW7KyZqzNKdM0KjA&h=9ClFzktfhbbkr7_kEGoPWZEkqgKwonr-cYQV9YsOBdY + response: + body: + string: '{"id": "3caf8658d1f24915a821374bfd8bf152", "properties": {"provisioningState": + "Succeeded", "exitCode": 0, "startedAt": "2025-08-15T03:18:22Z", "finishedAt": + "2025-08-15T03:18:22Z", "logs": "configmap/test-config created\n"}}' + headers: + cache-control: + - no-cache + content-length: + - '225' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:18:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/d8eddab4-a6fc-4029-a7f5-15bf5f059717 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 267C9625E44D4637BAE30EEAB5E5F44C Ref B: MAA201060515027 Ref C: 2025-08-15T03:18:27Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label --prefix + -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01 + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-06-26T18:04:42+00:00", "endpoint": "https://abc12332112.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-06-26T18:04:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-28T11:10:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/abc12332112", + "name": "abc12332112", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T17:30:35+00:00", "endpoint": "https://albertofori-notification-wcus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-10T17:30:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-10T18:29:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-wcus", + "name": "albertofori-notification-wcus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/spring-id-test": + {"principalId": "bbc27095-cfb5-4239-b4f1-b94dc4f76a33", "clientId": "b281689e-4907-4519-a49d-345edbc61f9e"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-06-13T17:35:52+00:00", + "endpoint": "https://mametcal-app-config.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": 604800, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "free"}, "systemData": {"createdBy": null, "createdByType": + null, "createdAt": "2019-06-13T17:35:52+00:00", "lastModifiedBy": "test@example.com", + "lastModifiedByType": "User", "lastModifiedAt": "2024-12-30T21:03:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/mametcal-app-config", + "name": "mametcal-app-config", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-08-06T20:23:35+00:00", "endpoint": "https://secondsource.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-08-06T20:23:35+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-01-31T22:47:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/secondsource", + "name": "SecondSource", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "identity": {"type": "SystemAssigned", "userAssignedIdentities": + {}, "principalId": "72bee6eb-3e9f-41e8-a903-8d7d2b988b1c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-01-06T17:54:47+00:00", + "endpoint": "https://avgupta-appc-cus.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://keyvault-importexport.vault.azure.net/keys/TestCMK", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-01-06T17:54:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-08T13:30:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-cus", + "name": "avgupta-appc-cus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-02-12T21:35:04+00:00", "endpoint": "https://eventgridteststonexuxu1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-12T21:35:04+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-12T21:35:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/eventgridteststonexuxu1", + "name": "EventGridTestStoneXuxu1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-05-31T18:07:37+00:00", "endpoint": "https://jimmyca-cus-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-05-31T18:07:37+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2022-10-13T16:53:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cus-appconfig", + "name": "jimmyca-cus-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-12T08:13:43+00:00", "endpoint": "https://0000-junbchen-pe-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/0000-junbchen-pe-test/privateEndpointConnections/0000-junbchen-pe", + "name": "0000-junbchen-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/0000-junbchen-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-12T08:13:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-12T08:34:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/0000-junbchen-pe-test", + "name": "0000-junbchen-pe-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-25T22:56:46+00:00", "endpoint": "https://albertofori-dataproxy-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Enabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-25T22:56:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T01:00:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-dataproxy-test", + "name": "albertofori-dataproxy-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-08-10T22:30:45+00:00", "endpoint": "https://albertofori-free-test1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-08-10T22:30:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-10T02:00:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-free-test1", + "name": "albertofori-free-test1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T18:47:12+00:00", "endpoint": "https://albertofori-sas-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T18:47:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-05T23:32:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sas-test", + "name": "albertofori-sas-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:26:11+00:00", "endpoint": "https://albertofori-sku-test-free.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-28T07:26:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T09:41:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free", + "name": "albertofori-sku-test-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:27:05+00:00", "endpoint": "https://albertofori-sku-test-free2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2023-11-28T07:27:05+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-11-28T07:27:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free2", + "name": "albertofori-sku-test-free2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:29:16+00:00", "endpoint": "https://albertofori-sku-test-free3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2023-11-28T07:29:16+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-11-28T07:29:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free3", + "name": "albertofori-sku-test-free3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-10T09:30:13+00:00", "endpoint": "https://albertofori-test-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-10T09:30:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-12T18:51:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-test", + "name": "albertofori-test-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-23T18:52:42+00:00", "endpoint": "https://albertoforitestanino.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-23T18:52:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-23T18:52:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforitestanino", + "name": "albertoforitestanino", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-01-06T23:44:03+00:00", "endpoint": "https://appconfig-spring-sample.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-01-06T23:44:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-01-06T23:44:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfig-spring-sample", + "name": "appconfig-spring-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "e656642d-deb0-4d1a-abc0-d8e85268cecf", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-19T02:05:10+00:00", + "endpoint": "https://appconfigaitzstf3sdnjs.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2332800, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": null, + "createdByType": null, "createdAt": "2024-11-19T02:05:10+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-05T19:12:11+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/appconfigaitzstf3sdnjs", + "name": "appconfigaitzstf3sdnjs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-07T19:32:28+00:00", "endpoint": "https://appconfigdemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-07T19:32:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-07T19:32:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigdemo", + "name": "AppConfigDemo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:47:53+00:00", "endpoint": "https://appconfigstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:47:53+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-01T09:39:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigstore", + "name": "AppConfigStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-07T19:09:14+00:00", "endpoint": "https://appconfigteststorexuxu1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-07T19:09:14+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-07T19:09:14+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/appconfigteststorexuxu1", + "name": "AppConfigTestStoreXuxu1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:47:27+00:00", "endpoint": "https://appconfigurationstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:47:27+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-01T09:43:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigurationstore", + "name": "AppConfigurationStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "765e8797-defc-4cbc-987a-72eb3dc71d5c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-01-04T00:25:57+00:00", + "endpoint": "https://avgupta-appc-wus.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-01-04T00:25:57+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-01-05T00:33:42+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus", + "name": "avgupta-appc-wus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T18:18:09+00:00", "endpoint": "https://avgupta-appc-wus-free.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2024-10-23T18:18:09+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-10-23T18:18:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus-free", + "name": "avgupta-appc-wus-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-05-18T20:18:01+00:00", "endpoint": "https://avgupta-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-05-18T20:18:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-01T17:37:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appconfig", + "name": "avgupta-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-10-03T16:36:18+00:00", "endpoint": "https://avgupta-ru-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-03T16:36:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-10-03T16:36:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-ru-test", + "name": "avgupta-ru-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2018-11-30T04:05:08+00:00", "endpoint": "https://configbuilderdemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2018-11-30T04:05:08+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-01T04:54:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigloadtestrg/providers/Microsoft.AppConfiguration/configurationStores/configbuilderdemo", + "name": "ConfigBuilderDemo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-09-23T17:46:44+00:00", "endpoint": "https://configprovider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 864000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2020-09-23T17:46:44+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-08-07T16:42:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-configprovider-rg/providers/Microsoft.AppConfiguration/configurationStores/configprovider", + "name": "configprovider", "tags": {"tagcli": "valcli", "tag-portal": "val-portal"}}, + {"type": "Microsoft.AppConfiguration/configurationStores", "location": "westus", + "properties": {"provisioningState": "Succeeded", "creationDate": "2021-10-05T20:53:37+00:00", + "endpoint": "https://configprovider-free.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": 604800, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "free"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2021-10-05T20:53:37+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-03-04T19:11:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-configprovider-rg/providers/Microsoft.AppConfiguration/configurationStores/configprovider-free", + "name": "configprovider-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2019-02-25T18:52:34+00:00", "endpoint": "https://configstoredemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-02-25T18:52:34+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-21T23:58:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azcfg-demo/providers/Microsoft.AppConfiguration/configurationStores/configstoredemo", + "name": "ConfigStoreDemo", "tags": {"Owner": "Zhenlan"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-12-01T10:43:03+00:00", + "endpoint": "https://cwanjauteststore.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", "identityClientId": + "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": null, + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-12-01T10:43:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:35:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjauteststore", + "name": "cwanjauTestStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-17T18:06:57+00:00", "endpoint": "https://demos.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": [], "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-17T18:06:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-04T21:25:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/demos", + "name": "demos", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-01-08T21:18:22+00:00", "endpoint": "https://dotnetprovider-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-01-08T21:18:22+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-01-08T21:18:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/dotnetprovider-test", + "name": "dotnetprovider-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:43:44+00:00", "endpoint": "https://example.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:43:44+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-06T16:56:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/example", + "name": "example", "tags": {"222": "222", "test": "123"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-12T08:30:46+00:00", "endpoint": "https://garywang-create.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-12T08:30:46+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-12T08:30:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-create", + "name": "garywang-create", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2018-08-21T07:04:28+00:00", "endpoint": "https://garywang-demo-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2018-08-21T07:04:28+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2018-11-13T21:18:47+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-demo-store", + "name": "garywang-demo-store", "tags": {"123": "456", "789": "000"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "westus", "identity": + {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jimmyca-wus/providers/microsoft.managedidentity/userassignedidentities/jimmyca-mi-4": + {"principalId": "949c3968-a2e3-4bdc-b9fe-920f4d5a183f", "clientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, + "principalId": "763db0ea-df44-4d4c-ac02-c8e5f44b126a", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-02-20T19:44:43+00:00", + "endpoint": "https://jimmyca-wus-appconfig.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jimmyca-demo.vault.azure.net/keys/jimmyca-demo-key", + "identityClientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-02-20T19:44:43+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-03-27T22:06:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-wus-appconfig", + "name": "jimmyca-wus-appconfig", "tags": {"abc": "def", "ghi": "jkl"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "westus", "identity": + {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, + "principalId": "d92f5b75-4c8c-458f-a50a-7d2b587bec2b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-04-07T23:44:00+00:00", + "endpoint": "https://jiyu-createtest6.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + null}}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-07T23:44:00+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T23:14:41+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-createtest6", + "name": "jiyu-createtest6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-17T19:32:40+00:00", "endpoint": "https://jiyu-devsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-17T19:32:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-21T17:59:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-devsku", + "name": "jiyu-devsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jiyu/providers/microsoft.managedidentity/userassignedidentities/jiyu-useridentity-1": + {"principalId": "634a239c-d987-4892-83a4-5a4c987e3606", "clientId": "2e0d90a5-7909-4831-8508-31cbc111cb52"}}, + "principalId": "25fe3433-a7bd-4643-add3-d4f5ccfc68ea", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-11-07T18:45:10+00:00", + "endpoint": "https://jiyu-store.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "publicNetworkAccess": "Enabled", + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-11-07T18:45:10+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-21T21:53:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-store", + "name": "JIYU-stORE", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-01T18:44:56+00:00", "endpoint": "https://jiyu-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-01T18:44:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-01T18:44:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test", + "name": "jiyu-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-08T22:49:58+00:00", "endpoint": "https://jiyu-test-create.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-08T22:49:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-08T22:49:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test-create", + "name": "jiyu-test-create", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-03T00:48:41+00:00", "endpoint": "https://jiyu-test1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-03T00:48:41+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-08-06T17:01:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test1", + "name": "jiyu-test1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-14T17:14:39+00:00", "endpoint": "https://jiyu-testcreate.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-14T17:14:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-21T21:52:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-testcreate", + "name": "jiyu-testcreate", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "None", "userAssignedIdentities": + {}}, "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-14T19:22:00+00:00", + "endpoint": "https://jiyu-testresource.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://henlitestcmk.vault.azure.net/keys/henlicmk", "identityClientId": + "0147171d-f0b9-4c5a-ae56-c2bc638e073b"}}, "privateEndpointConnections": null, + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-14T19:22:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-14T19:22:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-testresource", + "name": "jiyu-testresource", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "da9f840f-a366-4525-ae77-7142a794cf49", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-03-16T23:19:49+00:00", + "endpoint": "https://jiyu-teststore.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-16T23:19:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-29T21:25:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore", + "name": "jiyu-teststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-05T19:32:08+00:00", "endpoint": "https://jiyu-wusstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-wusstore/privateEndpointConnections/jiyupetest_756dffb7-fc14-48e7-a7de-d4c8a36bb01d", + "name": "jiyupetest_756dffb7-fc14-48e7-a7de-d4c8a36bb01d", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyupetest"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Enabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-05T19:32:08+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-04-11T21:44:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-wusstore", + "name": "jiyu-wusstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-11-18T20:34:11+00:00", "endpoint": "https://jlinares-wus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-18T20:34:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-11-18T20:34:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-wus", + "name": "jlinares-wus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-10T07:33:47+00:00", "endpoint": "https://junbchen-rbac-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-10T07:33:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-10T07:33:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchen-rbac-test", + "name": "junbchen-rbac-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-02-10T11:56:31+00:00", "endpoint": "https://junbchenconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-02-10T11:56:31+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-03-20T06:09:56+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig", + "name": "junbchenConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.ManagedIdentity/userAssignedIdentities/junbchen-identity-cmk": + {"principalId": "e790947e-9f1d-4382-af0f-eec738f38956", "clientId": "43310a7e-10ee-4a8d-95d5-512587f292b9"}}, + "principalId": "8ad03e71-e705-4886-b115-6e91de3e349f", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-09-21T07:06:42+00:00", + "endpoint": "https://junbchenconfig-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-test/privateEndpointConnections/junbchen-my-pe", + "name": "junbchen-my-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/junbchen-my-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-21T07:06:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-08T02:57:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-test", + "name": "junbchenconfig-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-23T01:44:20+00:00", "endpoint": "https://notification-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-23T01:44:20+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2021-05-24T20:06:29+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/notification-test", + "name": "notification-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-12-01T23:02:40+00:00", "endpoint": "https://replicatest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-12-01T23:02:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T23:13:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/replicatest", + "name": "replicatest", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:46:09+00:00", "endpoint": "https://sample.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:46:09+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-25T18:46:09+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/sample", + "name": "sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-02-14T05:17:40+00:00", "endpoint": "https://scrum.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-02-14T05:17:40+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-02-14T05:17:40+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/scrum", + "name": "scrum", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-16T23:42:04+00:00", "endpoint": "https://sync-integration-source.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-16T23:42:04+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-16T23:42:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-source", + "name": "sync-integration-source", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-16T23:43:37+00:00", "endpoint": "https://sync-integration-target.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-16T23:43:37+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-16T23:43:37+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-target", + "name": "sync-integration-target", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-03-05T00:57:52+00:00", "endpoint": "https://teststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2021-03-05T00:57:52+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-05-10T06:06:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vendorteamtestrg/providers/Microsoft.AppConfiguration/configurationStores/teststore1", + "name": "TestStore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-10T18:34:03+00:00", "endpoint": "https://tolani-manifest-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-10T18:34:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-10T18:34:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-manifest-test", + "name": "tolani-manifest-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-23T20:30:55+00:00", "endpoint": "https://xuxu-dev-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-23T20:30:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-23T20:30:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-dev-test", + "name": "xuxu-dev-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T23:20:19+00:00", "endpoint": "https://xuxu-softdelete-2025-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T23:20:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-01T05:59:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-softdelete-2025-3", + "name": "xuxu-softdelete-2025-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-22T21:58:58+00:00", "endpoint": "https://xuxutest2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-22T21:58:58+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-09-01T00:01:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxutest2", + "name": "xuxutest2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-01-23T22:43:48+00:00", "endpoint": "https://xuxuteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-01-23T22:43:48+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-01-23T22:43:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuteststore", + "name": "xuxuteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T12:14:02+00:00", "endpoint": "https://202503071050aadstorelbub34eijpr7lode.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:14:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:14:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050aadstorelbub34eijpr7lode", + "name": "202503071050AADStorelbub34eijpr7lode", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:05+00:00", "endpoint": "https://202503071050aadstoretvbz6bjfgcrueuj7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050aadstoretvbz6bjfgcrueuj7", + "name": "202503071050AADStoretvbz6bjfgcrueuj7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050featurefiltertestz3tajzl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050featurefiltertestz3tajzl", + "name": "202503071050FeatureFilterTestz3tajzl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050featuretestbis7h3hf75vhu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050featuretestbis7h3hf75vhu", + "name": "202503071050FeatureTestbis7h3hf75vhu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050kvsetimporttestj7dxbos4t.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvsetimporttestj7dxbos4t", + "name": "202503071050KVSetImportTestj7dxbos4t", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050kvtestex2pahcgf6zf6ichhh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvtestex2pahcgf6zf6ichhh", + "name": "202503071050KVTestex2pahcgf6zf6ichhh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:43+00:00", "endpoint": "https://202503071050kvtestpwhanchjfarusoc6hx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvtestpwhanchjfarusoc6hx", + "name": "202503071050KVTestpwhanchjfarusoc6hx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:05+00:00", "endpoint": "https://202503071050source4jumespglx52uvwv73.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050source4jumespglx52uvwv73", + "name": "202503071050Source4jumespglx52uvwv73", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050strictimporttestiabfkuyi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050strictimporttestiabfkuyi", + "name": "202503071050StrictImportTestiabfkuyi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-18T18:36:58+00:00", "endpoint": "https://aacpreviewcddklrzrcr43y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-18T18:36:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-25T17:47:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev3/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewcddklrzrcr43y", + "name": "aacpreviewcddklrzrcr43y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-17T22:34:27+00:00", "endpoint": "https://aacpreviewglh3yhyjvuqx4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-17T22:34:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-17T23:24:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewglh3yhyjvuqx4", + "name": "aacpreviewglh3yhyjvuqx4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-29T18:27:34+00:00", "endpoint": "https://aacpreviewnbuq7mn7uftpu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T18:27:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-30T19:33:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-ai-chat-test/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewnbuq7mn7uftpu", + "name": "aacpreviewnbuq7mn7uftpu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-17T23:42:05+00:00", "endpoint": "https://aacpreviewog5i35jytnwqe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-17T23:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-17T23:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev2/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewog5i35jytnwqe", + "name": "aacpreviewog5i35jytnwqe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-22T18:12:58+00:00", "endpoint": "https://aacpreviewpem2i2yi7hhce.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-22T18:12:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-22T18:12:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-ross-azd-temp/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewpem2i2yi7hhce", + "name": "aacpreviewpem2i2yi7hhce", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d2fc891a-1990-40bd-87e5-89583d8603f0", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-03-21T04:28:43+00:00", + "endpoint": "https://aactest4156.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-03-21T04:28:43+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-06-25T21:39:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_test2/providers/Microsoft.AppConfiguration/configurationStores/aactest4156", + "name": "AACtest4156", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:48:19+00:00", "endpoint": "https://aadstore2fdc6wfxygy2nnb3gw6ckd2sermi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:48:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:48:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2fdc6wfxygy2nnb3gw6ckd2sermi", + "name": "AADStore2fdc6wfxygy2nnb3gw6ckd2sermi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://aadstore2j23nxok6pn5otve.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2j23nxok6pn5otve", + "name": "AADStore2j23nxok6pn5otve", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:25:20+00:00", "endpoint": "https://aadstore2kisbgqpo525kjduvfqihqnsx4nt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:25:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:25:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2kisbgqpo525kjduvfqihqnsx4nt", + "name": "AADStore2kisbgqpo525kjduvfqihqnsx4nt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:29+00:00", "endpoint": "https://aadstore3dce6d55zqgbwack.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore3dce6d55zqgbwack", + "name": "AADStore3dce6d55zqgbwack", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:28+00:00", "endpoint": "https://aadstore6nr3kgh7g33qxwbb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore6nr3kgh7g33qxwbb", + "name": "AADStore6nr3kgh7g33qxwbb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://aadstoreaantdclm5gpqei2hhdf6cva3sljt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreaantdclm5gpqei2hhdf6cva3sljt", + "name": "AADStoreaantdclm5gpqei2hhdf6cva3sljt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T21:46:30+00:00", "endpoint": "https://aadstorec4ol3cqh5zpjr6h26tze7vmjpw3z.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "b82302a5-ce22-429d-b5af-a8969e61ef42", "createdByType": + "Application", "createdAt": "2025-03-18T21:46:30+00:00", "lastModifiedBy": + "b82302a5-ce22-429d-b5af-a8969e61ef42", "lastModifiedByType": "Application", + "lastModifiedAt": "2025-03-18T21:46:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/aadstorec4ol3cqh5zpjr6h26tze7vmjpw3z", + "name": "AADStorec4ol3cqh5zpjr6h26tze7vmjpw3z", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://aadstored4eq4jf2dxb7w6q2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstored4eq4jf2dxb7w6q2", + "name": "AADStored4eq4jf2dxb7w6q2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:54:21+00:00", "endpoint": "https://aadstoredngl3p3poqiv3afvsecphzi7awkv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:54:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:54:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoredngl3p3poqiv3afvsecphzi7awkv", + "name": "AADStoredngl3p3poqiv3afvsecphzi7awkv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://aadstoreehsptlkv33yb6ypf4u6ro2zjzoma.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreehsptlkv33yb6ypf4u6ro2zjzoma", + "name": "AADStoreehsptlkv33yb6ypf4u6ro2zjzoma", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://aadstoreemoarcatx4ig55bf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreemoarcatx4ig55bf", + "name": "AADStoreemoarcatx4ig55bf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:01:10+00:00", "endpoint": "https://aadstorefa47dzf4yc7jajleqyj3fsy5z2ne.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:01:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:01:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefa47dzf4yc7jajleqyj3fsy5z2ne", + "name": "AADStorefa47dzf4yc7jajleqyj3fsy5z2ne", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:07:12+00:00", "endpoint": "https://aadstorefekzsb2x5ovlq42cl4fjprdjcqck.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:07:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:07:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefekzsb2x5ovlq42cl4fjprdjcqck", + "name": "AADStorefekzsb2x5ovlq42cl4fjprdjcqck", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:48:19+00:00", "endpoint": "https://aadstorefj4psmfliidhcij2l53aht4reart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:48:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:48:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefj4psmfliidhcij2l53aht4reart", + "name": "AADStorefj4psmfliidhcij2l53aht4reart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:00+00:00", "endpoint": "https://aadstorefj5yfl63sm2uy46h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefj5yfl63sm2uy46h", + "name": "AADStorefj5yfl63sm2uy46h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T18:39:35+00:00", "endpoint": "https://aadstorehztciysy7xk4ewqzycdsq4incxbl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T18:39:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T18:39:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorehztciysy7xk4ewqzycdsq4incxbl", + "name": "AADStorehztciysy7xk4ewqzycdsq4incxbl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:30:23+00:00", "endpoint": "https://aadstorej6ldt2p4jl4arinnyk6m56v7yxob.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:30:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:30:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorej6ldt2p4jl4arinnyk6m56v7yxob", + "name": "AADStorej6ldt2p4jl4arinnyk6m56v7yxob", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://aadstorelyj2p6zwhasozckb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorelyj2p6zwhasozckb", + "name": "AADStorelyj2p6zwhasozckb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:09+00:00", "endpoint": "https://aadstoremaufp2otrctetauz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoremaufp2otrctetauz", + "name": "AADStoremaufp2otrctetauz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:53:43+00:00", "endpoint": "https://aadstoremqvpy6y6ngbns2zenvqysrzsl3ul.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:53:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:53:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoremqvpy6y6ngbns2zenvqysrzsl3ul", + "name": "AADStoremqvpy6y6ngbns2zenvqysrzsl3ul", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T21:34:01+00:00", "endpoint": "https://aadstoreoi34pez3z4quweid45aemfftd6q5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "0c2e9572-c9a5-4312-87ca-e25e62ce1775", "createdByType": + "Application", "createdAt": "2025-03-18T21:34:01+00:00", "lastModifiedBy": + "0c2e9572-c9a5-4312-87ca-e25e62ce1775", "lastModifiedByType": "Application", + "lastModifiedAt": "2025-03-18T21:34:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/aadstoreoi34pez3z4quweid45aemfftd6q5", + "name": "AADStoreoi34pez3z4quweid45aemfftd6q5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:21:34+00:00", "endpoint": "https://aadstoreptvgrkgrh5qdndt42qsprw5rm6ly.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:21:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:21:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreptvgrkgrh5qdndt42qsprw5rm6ly", + "name": "AADStoreptvgrkgrh5qdndt42qsprw5rm6ly", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:33:36+00:00", "endpoint": "https://aadstorer6gudmc32peoau6hb3bf5vvyj3q2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:33:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:33:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorer6gudmc32peoau6hb3bf5vvyj3q2", + "name": "AADStorer6gudmc32peoau6hb3bf5vvyj3q2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:29:39+00:00", "endpoint": "https://aadstoresadnweyx5hskkifsx7tfsv4ptwqe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:29:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:29:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoresadnweyx5hskkifsx7tfsv4ptwqe", + "name": "AADStoresadnweyx5hskkifsx7tfsv4ptwqe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T18:46:41+00:00", "endpoint": "https://aadstorestvj77kkmdknc2sv7xibljl7433p.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T18:46:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T18:46:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorestvj77kkmdknc2sv7xibljl7433p", + "name": "AADStorestvj77kkmdknc2sv7xibljl7433p", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://aadstoreu4qbgzyfxdmy6lpd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreu4qbgzyfxdmy6lpd", + "name": "AADStoreu4qbgzyfxdmy6lpd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:16+00:00", "endpoint": "https://aadstoreuje4evizirs5a6342bspybsecsib.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreuje4evizirs5a6342bspybsecsib", + "name": "AADStoreuje4evizirs5a6342bspybsecsib", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:11:12+00:00", "endpoint": "https://aadstorevgd2tlbh6eykb7dx2loyzn4xajr3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:11:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:11:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorevgd2tlbh6eykb7dx2loyzn4xajr3", + "name": "AADStorevgd2tlbh6eykb7dx2loyzn4xajr3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:33:12+00:00", "endpoint": "https://aadstorevqztvqfq25dqbpjndilalipnl6tw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:33:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:33:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorevqztvqfq25dqbpjndilalipnl6tw", + "name": "AADStorevqztvqfq25dqbpjndilalipnl6tw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:51:34+00:00", "endpoint": "https://aadstorexqwgsfnuryxk6a52ashu2z6bst3d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:51:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:51:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorexqwgsfnuryxk6a52ashu2z6bst3d", + "name": "AADStorexqwgsfnuryxk6a52ashu2z6bst3d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://aadstorexxspwhf6yblpkshfi46zb4h76jmw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorexxspwhf6yblpkshfi46zb4h76jmw", + "name": "AADStorexxspwhf6yblpkshfi46zb4h76jmw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://aadstoreyfhynglzfhp6ouko.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreyfhynglzfhp6ouko", + "name": "AADStoreyfhynglzfhp6ouko", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:58:27+00:00", "endpoint": "https://aadstorez47z44qmkfeoffaj7p6jyuljr5du.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:58:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:58:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorez47z44qmkfeoffaj7p6jyuljr5du", + "name": "AADStorez47z44qmkfeoffaj7p6jyuljr5du", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-27T11:12:24+00:00", "endpoint": "https://aadtestbphpp6jw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-27T11:12:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-27T11:12:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaqtmt4okxwxkkeqxxixbg26vnobwquumjo2cgvejdroji56rwqdvwasvnebr3xya4/providers/Microsoft.AppConfiguration/configurationStores/aadtestbphpp6jw", + "name": "AadTestbphpp6jw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:52:15+00:00", "endpoint": "https://aadtestfz2vwxiz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:52:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:52:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf32tkfpn6fob3yu73dinjh76shlmvspc3vvnde72phco2oohx5x5zypldebnx5ra2/providers/Microsoft.AppConfiguration/configurationStores/aadtestfz2vwxiz", + "name": "AadTestfz2vwxiz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:42+00:00", "endpoint": "https://aadtestyu6jk3pc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqos4tjbhhejcb656qv6thmesokhiwxsl2lxiwepvzuphcjifnzbefcz2naw2t3dni/providers/Microsoft.AppConfiguration/configurationStores/aadtestyu6jk3pc", + "name": "AadTestyu6jk3pc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:56:22+00:00", "endpoint": "https://aadtestzyc5ivjm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:56:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:56:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjtmgpqlhvdaxivlgfit35z6eugeihochof5nogetvgk7qmljxwhy6mwuks46fy2ev/providers/Microsoft.AppConfiguration/configurationStores/aadtestzyc5ivjm", + "name": "AadTestzyc5ivjm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-29T16:29:13+00:00", "endpoint": "https://ai-chatapp-demo-mametcal.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T16:29:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-29T17:28:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai-chatapp-demo-mametcal/providers/Microsoft.AppConfiguration/configurationStores/ai-chatapp-demo-mametcal", + "name": "AI-ChatApp-Demo-mametcal", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "dfb4ad91-368f-4de1-8101-c7919fd25c5e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-01-23T23:21:07+00:00", + "endpoint": "https://albertofori-ff-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-23T23:21:07+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-02T17:52:47+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-ff-test", + "name": "albertofori-ff-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-17T23:38:28+00:00", "endpoint": "https://albertofori-import-export-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-06-17T23:38:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-26T17:22:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-import-export-test", + "name": "albertofori-import-export-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-26T13:03:30+00:00", "endpoint": "https://albertofori-python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-26T13:03:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-27T17:06:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-python-provider", + "name": "albertofori-python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-12T21:52:32+00:00", "endpoint": "https://albertofori-snapshot-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-12T21:52:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-21T19:32:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-snapshot-demo", + "name": "albertofori-snapshot-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/albertofori-managed-id": + {"principalId": "6a8e5046-50d3-480d-9ca3-94f61a51f8e3", "clientId": "b82302a5-ce22-429d-b5af-a8969e61ef42"}}, + "principalId": "c27e254a-eed2-4326-a0c8-3082898bac95", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-01T17:00:28+00:00", + "endpoint": "https://albertofori-test-config.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Enabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-04-01T17:00:28+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-10-30T18:14:28+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-config", + "name": "albertofori-test-config", "tags": {"this": "is a new tag"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastus", "identity": + {"type": "SystemAssigned", "principalId": "627b96a5-156b-4334-b427-a97f73c44247", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2022-08-11T17:30:03+00:00", "endpoint": "https://albertofori-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 259200, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T17:30:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-11T21:19:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-store", + "name": "albertofori-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c05dd707-b8e5-4147-84e3-b09e2bf280ed", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-19T03:41:20+00:00", + "endpoint": "https://appconfig-zhiyuanliang.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-02-19T03:41:20+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-30T12:24:20+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyuanliang-dev/providers/Microsoft.AppConfiguration/configurationStores/appconfig-zhiyuanliang", + "name": "appconfig-zhiyuanliang", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-18T22:27:36+00:00", "endpoint": "https://appconfigkube.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-18T22:27:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-18T22:27:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mvp_demo/providers/Microsoft.AppConfiguration/configurationStores/appconfigkube", + "name": "appConfigKube", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-09T08:25:44+00:00", + "endpoint": "https://appconfigurationstore1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", "identityClientId": + "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": null, + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 86400, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-09T08:25:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-25T07:59:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/appconfigurationstore1", + "name": "appconfigurationstore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-10T15:50:07+00:00", "endpoint": "https://appconfigw4swdcadfzqb6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-10T15:50:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T17:04:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/appconfigw4swdcadfzqb6", + "name": "appconfigw4swdcadfzqb6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-10-16T18:36:25+00:00", "endpoint": "https://avgupta-appc-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-16T18:36:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-23T19:57:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus", + "name": "avgupta-appc-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-06T17:34:04+00:00", "endpoint": "https://avgupta-appc-eus-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-06T17:34:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-06T17:34:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus-test2", + "name": "avgupta-appc-eus-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:57:29+00:00", "endpoint": "https://bothschematest2ajsnm4m4m.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:57:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:57:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematest2ajsnm4m4m", + "name": "BothSchemaTest2ajsnm4m4m", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T20:04:20+00:00", "endpoint": "https://bothschematestazrlxgv5apnvcwi5dgvsoj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T20:04:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T20:04:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestazrlxgv5apnvcwi5dgvsoj", + "name": "BothSchemaTestazrlxgv5apnvcwi5dgvsoj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:51+00:00", "endpoint": "https://bothschematestdxcevakc6u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestdxcevakc6u", + "name": "BothSchemaTestdxcevakc6u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:07:29+00:00", "endpoint": "https://bothschematestfxm4zemppk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:07:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:07:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestfxm4zemppk", + "name": "BothSchemaTestfxm4zemppk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-29T00:38:15+00:00", "endpoint": "https://cdntestinghtkswxoxu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2025-05-29T00:38:15+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-29T00:42:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/cdntestinghtkswxoxu", + "name": "cdntestinghtkswxoxu", "tags": {"demo": "cdn-cache-busting"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastus", "properties": + {"provisioningState": "Succeeded", "creationDate": "2024-12-06T08:13:55+00:00", + "endpoint": "https://chenshi-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-12-06T08:13:55+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-12-06T08:13:55+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chenshi-empty/providers/Microsoft.AppConfiguration/configurationStores/chenshi-test", + "name": "chenshi-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-31T04:09:21+00:00", "endpoint": "https://credentialtestghlwa5dymj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-31T04:09:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-31T04:09:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmduhbiqbiiegesiuewzdwlvnh6wrdgdsbti6tgxzjzeittnnlqwu4or5gzhqmjzcp/providers/Microsoft.AppConfiguration/configurationStores/credentialtestghlwa5dymj", + "name": "CredentialTestghlwa5dymj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://credentialtestrvdev7icfu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkhjgepteg6uxberos6x5tz6bbxjgjliagmxzgu2iehb5me5yqmle6shfkr43tgvue/providers/Microsoft.AppConfiguration/configurationStores/credentialtestrvdev7icfu", + "name": "CredentialTestrvdev7icfu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:00+00:00", "endpoint": "https://credentialtestvdwi2cve5c.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/credentialtestvdwi2cve5c", + "name": "CredentialTestvdwi2cve5c", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-08T10:32:41+00:00", "endpoint": "https://cwanjau-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-01-08T10:32:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-20T17:42:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-appconfig", + "name": "cwanjau-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T16:42:42+00:00", "endpoint": "https://cwanjau-data.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T16:42:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T16:42:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-data", + "name": "cwanjau-data", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-24T15:05:46+00:00", "endpoint": "https://cwanjauconfig.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", + "identityClientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-24T15:05:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-06T08:22:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjauconfig", + "name": "cwanjauConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-05T17:31:19+00:00", "endpoint": "https://cwanjautestpremiumsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-05T17:31:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-18T09:00:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjautestpremiumsku", + "name": "cwanjautestpremiumsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:58+00:00", "endpoint": "https://destination624bxoocjr2fi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwyttwmni2xmbsaxrtp64sja6rdh2ocxcprrc5pwdogqijazx7f4vhljo5qfanoryn/providers/Microsoft.AppConfiguration/configurationStores/destination624bxoocjr2fi", + "name": "Destination624bxoocjr2fi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:21+00:00", "endpoint": "https://destinationaoj4n5rlqmypa.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:50:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:50:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationaoj4n5rlqmypa", + "name": "Destinationaoj4n5rlqmypa", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:53:04+00:00", "endpoint": "https://destinationaq6eqb6bwrydgaariika6z53n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:53:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:53:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationaq6eqb6bwrydgaariika6z53n", + "name": "Destinationaq6eqb6bwrydgaariika6z53n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:31+00:00", "endpoint": "https://destinationcplr7jafu2ya5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationcplr7jafu2ya5", + "name": "Destinationcplr7jafu2ya5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:34:19+00:00", "endpoint": "https://destinationibqoopqxlj6k6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:34:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:34:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationibqoopqxlj6k6", + "name": "Destinationibqoopqxlj6k6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:56+00:00", "endpoint": "https://destinationlxi67pwgjj57oguvmzwgkt2vf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationlxi67pwgjj57oguvmzwgkt2vf", + "name": "Destinationlxi67pwgjj57oguvmzwgkt2vf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:22+00:00", "endpoint": "https://destinationnqga6gaurejxxtvybkxnccztp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationnqga6gaurejxxtvybkxnccztp", + "name": "Destinationnqga6gaurejxxtvybkxnccztp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:52:14+00:00", "endpoint": "https://destinationoj2i2wxwar47i.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationoj2i2wxwar47i", + "name": "Destinationoj2i2wxwar47i", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:39:38+00:00", "endpoint": "https://destinationrzqf65ztf6tdr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:39:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:39:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationrzqf65ztf6tdr", + "name": "Destinationrzqf65ztf6tdr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:07:04+00:00", "endpoint": "https://destinationvzuqxfj74tquf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:07:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:07:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguznozpjynfgaebftsnnrdc52h2scgoorpr6unkhktfxrcwsulo6qvsxb6b6j2jkfn/providers/Microsoft.AppConfiguration/configurationStores/destinationvzuqxfj74tquf", + "name": "Destinationvzuqxfj74tquf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:00:21+00:00", "endpoint": "https://destinationwjno7ctvxyjrl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:00:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:00:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationwjno7ctvxyjrl", + "name": "Destinationwjno7ctvxyjrl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:02+00:00", "endpoint": "https://destinationy75zwpupmogkjvsohc7ou4yxv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationy75zwpupmogkjvsohc7ou4yxv", + "name": "Destinationy75zwpupmogkjvsohc7ou4yxv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:37:44+00:00", "endpoint": "https://disablelocalauthfju7nz7v.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:37:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:38:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthfju7nz7v", + "name": "DisableLocalAuthfju7nz7v", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:58:33+00:00", "endpoint": "https://disablelocalauthhs4noupq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:58:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:59:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthhs4noupq", + "name": "DisableLocalAuthhs4noupq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:04+00:00", "endpoint": "https://disablelocalauthqaeotexuyh5meeg5l7xm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthqaeotexuyh5meeg5l7xm", + "name": "DisableLocalAuthqaeotexuyh5meeg5l7xm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:48:35+00:00", "endpoint": "https://disablelocalauthsejaovxn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:48:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:49:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthsejaovxn", + "name": "DisableLocalAuthsejaovxn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:39+00:00", "endpoint": "https://featurefiltertest4oe7rjo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest4oe7rjo", + "name": "FeatureFilterTest4oe7rjo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:41+00:00", "endpoint": "https://featurefiltertest4qffyn3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq3rajrlh5wrogzgbxi7z4mjxxcjgiie4yagnbmwn6wrksy52etjishk2wfygh6qc5/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest4qffyn3", + "name": "FeatureFilterTest4qffyn3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:49+00:00", "endpoint": "https://featurefiltertest5a5yxm3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest5a5yxm3", + "name": "FeatureFilterTest5a5yxm3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:06+00:00", "endpoint": "https://featurefiltertestak76alz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestak76alz", + "name": "FeatureFilterTestak76alz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:59+00:00", "endpoint": "https://featurefiltertestczvejyt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestczvejyt", + "name": "FeatureFilterTestczvejyt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:31+00:00", "endpoint": "https://featurefiltertestntvamlv3qsxhrqghqxt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestntvamlv3qsxhrqghqxt", + "name": "FeatureFilterTestntvamlv3qsxhrqghqxt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:08:03+00:00", "endpoint": "https://haiyiwen-weu-0716.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:08:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:08:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716", + "name": "haiyiwen-weu-0716", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:23:12+00:00", "endpoint": "https://haiyiwen-weu-0716-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:23:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:23:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-1", + "name": "haiyiwen-weu-0716-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:24:06+00:00", "endpoint": "https://haiyiwen-weu-0716-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:24:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:24:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-2", + "name": "haiyiwen-weu-0716-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:29:54+00:00", "endpoint": "https://haiyiwen-weu-0716-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:29:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:29:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-3", + "name": "haiyiwen-weu-0716-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:30:11+00:00", "endpoint": "https://haiyiwen-weu-0716-4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:30:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:30:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-4", + "name": "haiyiwen-weu-0716-4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:30:27+00:00", "endpoint": "https://haiyiwen-weu-0716-5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:30:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:30:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-5", + "name": "haiyiwen-weu-0716-5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:39:47+00:00", "endpoint": "https://haiyiwen-weu-0716-6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:39:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:39:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-6", + "name": "haiyiwen-weu-0716-6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-11T17:46:54+00:00", "endpoint": "https://jlinares-weu-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-11T17:46:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-11T17:46:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-weu-test", + "name": "jlinares-weu-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-11-20T20:44:09+00:00", "endpoint": "https://parameters.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-20T20:44:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-09T21:27:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/parameters", + "name": "parameters", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southeastasia", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-23T08:11:48+00:00", "endpoint": "https://appconfig-dova-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-23T08:11:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-23T08:11:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfig-dova/providers/Microsoft.AppConfiguration/configurationStores/appconfig-dova-store", + "name": "appconfig-dova-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-10-08T16:40:07+00:00", "endpoint": "https://australia-east-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-08T16:40:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-08T16:40:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/australia-east-test", + "name": "australia-east-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-10-21T20:31:31+00:00", "endpoint": "https://tolani-aue-aad-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-21T20:31:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-21T21:13:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-aue-aad-test", + "name": "tolani-aue-aad-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-05T20:33:25+00:00", "endpoint": "https://tolani-aue-test-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T20:33:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-05T20:33:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-aue-test-2", + "name": "tolani-aue-test-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "identity": {"type": "SystemAssigned", "principalId": + "5b4d94b7-a951-4698-805a-cfc91ee54f15", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-08-06T12:26:08+00:00", + "endpoint": "https://freestoreee.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-08-06T12:26:08+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-08-07T07:30:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestoreee", + "name": "freeStoreee", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-test": + {"principalId": "1a010275-1a70-4915-a017-b778836ea3b7", "clientId": "b60a60f9-e266-447b-a168-15af052f49a1"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-01-16T19:22:44+00:00", + "endpoint": "https://jiyu-neu.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-16T19:22:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-08T00:09:31+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-neu", + "name": "jiyu-neu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-18T16:15:26+00:00", "endpoint": "https://testupgradefree.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T16:15:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-20T17:38:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testupgradefree", + "name": "testupgradefree", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uksouth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-15T08:59:14+00:00", "endpoint": "https://cwanjau-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-15T08:59:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T07:24:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-pe", + "name": "cwanjau-PE", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uksouth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-22T22:32:16+00:00", "endpoint": "https://tolani-prod-uks-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-22T22:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-22T22:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-uks-1", + "name": "tolani-prod-uks-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/albertofori-managed-id": + {"principalId": "6a8e5046-50d3-480d-9ca3-94f61a51f8e3", "clientId": "b82302a5-ce22-429d-b5af-a8969e61ef42"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-01T22:41:59+00:00", + "endpoint": "https://albertofori-diff-import-export.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-01T22:41:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-11T21:32:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-diff-import-export", + "name": "albertofori-diff-import-export", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-20T20:26:27+00:00", "endpoint": "https://albertoforiteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-06-20T20:26:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-09T01:23:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforiteststore", + "name": "albertoforiteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T22:55:24+00:00", "endpoint": "https://avgupta-appc-eus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T22:55:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-07T23:58:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus2", + "name": "avgupta-appc-eus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-21T16:22:23+00:00", "endpoint": "https://haiyiwen-aiconfig-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-21T16:22:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-04T04:24:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-aiconfig-demo", + "name": "haiyiwen-aiconfig-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-06-05T18:10:41+00:00", + "endpoint": "https://haiyiwen-eus2-0605.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-05T18:10:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T20:57:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2-0605", + "name": "haiyiwen-eus2-0605", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-05T18:25:54+00:00", "endpoint": "https://haiyiwen-eus2-0605-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-05T18:25:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-05T18:25:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2-0605-1", + "name": "haiyiwen-eus2-0605-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-06T22:13:49+00:00", "endpoint": "https://jiyu-eus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-06T22:13:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-06T22:19:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus2", + "name": "jiyu-eus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-06T18:34:38+00:00", "endpoint": "https://portal-test-eu2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-06T18:34:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T17:29:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-eu2", + "name": "portal-test-eu2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-17T20:42:26+00:00", "endpoint": "https://portal-test-eu2-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-17T20:42:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-18T00:52:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-eu2-2", + "name": "portal-test-eu2-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-09T08:19:20+00:00", "endpoint": "https://test-experimentation.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-09T08:19:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-09T08:24:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/test-experimentation", + "name": "test-experimentation", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-15T17:26:16+00:00", "endpoint": "https://appconfig-mfpyttqk5gws.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-15T17:26:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-15T17:26:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfig-mfpyttqk5gws", + "name": "appconfig-mfpyttqk5gws", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "c45e9ed2-6e72-460a-82f9-6306b65fa956", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-03-02T02:42:51+00:00", + "endpoint": "https://appconfigtwo.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-03-02T02:42:51+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-03-03T20:14:50+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/appconfigtwo", + "name": "AppConfigTwo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T17:01:30+00:00", "endpoint": "https://appconfigwmsp7gt2w2iak.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-10-23T17:01:30+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-10-23T17:01:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/appconfigwmsp7gt2w2iak", + "name": "appconfigwmsp7gt2w2iak", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-10T02:44:51+00:00", "endpoint": "https://asdfasdfad.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-10T02:44:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-10T02:44:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/asdfasdfad", + "name": "asdfasdfad", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-25T17:28:57+00:00", "endpoint": "https://avgupta-appc-wus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-25T17:28:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-13T17:23:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus2", + "name": "avgupta-appc-wus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "4090f296-4b68-49d2-9250-9bcff07d821b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-11-22T19:29:17+00:00", + "endpoint": "https://avgupta-pe-appc.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-22T19:29:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T00:41:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc", + "name": "avgupta-pe-appc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T09:10:56+00:00", "endpoint": "https://configmapimporttest2uedl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T09:10:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T09:10:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest2uedl", + "name": "ConfigMapImportTest2uedl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T09:04:11+00:00", "endpoint": "https://configmapimporttest3nenl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T09:04:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T09:04:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest3nenl", + "name": "ConfigMapImportTest3nenl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-15T03:11:28+00:00", "endpoint": "https://configmapimporttest5eotn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-15T03:11:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-15T03:11:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest5eotn", + "name": "ConfigMapImportTest000002", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T08:22:05+00:00", "endpoint": "https://configmapimporttest7ugov.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T08:22:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T08:22:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest7ugov", + "name": "ConfigMapImportTest7ugov", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T14:47:55+00:00", "endpoint": "https://configmapimporttesteqacu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T14:47:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T14:47:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttesteqacu", + "name": "ConfigMapImportTesteqacu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T14:46:09+00:00", "endpoint": "https://configmapimporttestezsgo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T14:46:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T14:46:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestezsgo", + "name": "ConfigMapImportTestezsgo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-15T02:42:27+00:00", "endpoint": "https://configmapimporttestghpw2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-15T02:42:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-15T02:42:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestghpw2", + "name": "ConfigMapImportTestghpw2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T15:36:34+00:00", "endpoint": "https://configmapimporttestifrht.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T15:36:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T15:36:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestifrht", + "name": "ConfigMapImportTestifrht", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T07:13:43+00:00", "endpoint": "https://configmapimporttestiy6dj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T07:13:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T07:13:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestiy6dj", + "name": "ConfigMapImportTestiy6dj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T15:05:24+00:00", "endpoint": "https://configmapimporttestjiwd3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T15:05:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T15:05:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestjiwd3", + "name": "ConfigMapImportTestjiwd3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T09:45:34+00:00", "endpoint": "https://configmapimporttestjxp4j.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T09:45:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T09:45:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestjxp4j", + "name": "ConfigMapImportTestjxp4j", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T08:06:28+00:00", "endpoint": "https://configmapimporttests45es.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T08:06:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T08:06:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttests45es", + "name": "ConfigMapImportTests45es", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T07:38:51+00:00", "endpoint": "https://configmapimporttestubqzy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T07:38:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T07:38:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestubqzy", + "name": "ConfigMapImportTestubqzy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-30T00:09:38+00:00", "endpoint": "https://demombappconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-06-30T00:09:38+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-07-18T22:42:16+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/demombappconfig", + "name": "DemoMBAppConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-27T19:10:15+00:00", "endpoint": "https://fake-endpoint.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-27T19:10:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-27T19:11:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/fake-endpoint", + "name": "fake-endpoint", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-13T17:36:36+00:00", "endpoint": "https://highnumberffstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-13T17:36:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-13T17:36:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/highnumberffstore", + "name": "HighNumberFFStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-13T15:59:39+00:00", "endpoint": "https://importtestspring.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-13T15:59:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-13T15:59:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/importtestspring", + "name": "importtestspring", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-21T23:27:57+00:00", "endpoint": "https://java-export-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-21T23:27:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-21T23:27:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/java-export-test", + "name": "java-export-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-07-01T18:03:45+00:00", "endpoint": "https://jlinares-test-slw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-01T18:03:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-07-01T18:03:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-slw", + "name": "jlinares-test-slw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-04-07T23:28:48+00:00", "endpoint": "https://jlinares-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-07T23:28:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-07T23:28:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-store", + "name": "jlinares-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-25T17:10:07+00:00", "endpoint": "https://largekeyvaultstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-25T17:10:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-25T17:10:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/largekeyvaultstore", + "name": "LargeKeyVaultStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-22T18:40:42+00:00", "endpoint": "https://mb-test-template.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-22T18:40:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-22T18:40:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/mb-test-template", + "name": "mb-test-template", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-03-19T19:54:12+00:00", "endpoint": "https://nofeatureflagstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2020-03-19T19:54:12+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-03-19T19:54:12+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/nofeatureflagstore", + "name": "NoFeatureFlagStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-22T19:32:34+00:00", "endpoint": "https://noreplicatest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-22T19:32:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-22T19:32:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/noreplicatest", + "name": "noReplicaTest", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-26T22:52:06+00:00", "endpoint": "https://python-ai-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-26T22:52:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-26T22:52:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-azureaidemomametcal/providers/Microsoft.AppConfiguration/configurationStores/python-ai-test", + "name": "python-ai-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-22T17:53:31+00:00", "endpoint": "https://python-chatapp-example.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-22T17:53:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-25T23:18:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-chatapp-example", + "name": "Python-ChatApp-Example", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-13T18:28:47+00:00", "endpoint": "https://python-multi-source-ff.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-13T18:28:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-27T18:33:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-multi-source-ff", + "name": "python-multi-source-ff", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-01T16:51:09+00:00", "endpoint": "https://python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-01T16:51:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-25T17:52:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider", + "name": "python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-09T17:53:50+00:00", "endpoint": "https://python-provider-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-09T17:53:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-09T17:53:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider-demo", + "name": "python-provider-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-26T18:00:59+00:00", "endpoint": "https://python-provider-flask-sample.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-26T18:00:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-18T22:38:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider-flask-sample", + "name": "python-provider-flask-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-27T19:37:52+00:00", "endpoint": "https://python-provider-tests.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-27T19:37:52+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T21:30:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/python-provider-tests", + "name": "python-provider-tests", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-06-12T15:05:18+00:00", "endpoint": "https://recoverstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-06-12T15:05:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-12T15:05:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/recoverstore", + "name": "recoverStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-06T18:58:43+00:00", "endpoint": "https://screenshotdocstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-06T18:58:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-16T23:29:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/screenshotdocstore", + "name": "screenshotdocstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-12-07T18:13:20+00:00", "endpoint": "https://spring-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-12-07T18:13:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-12-07T18:13:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-demo", + "name": "Spring-Demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-01T17:01:47+00:00", "endpoint": "https://spring-df-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-01T17:01:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-09-01T17:01:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-df-demo", + "name": "spring-df-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-30T19:16:42+00:00", "endpoint": "https://spring-quickstart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-30T19:16:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-30T19:16:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-quickstart", + "name": "spring-quickstart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-01-17T10:27:02+00:00", "endpoint": "https://spring-sync-token.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-01-17T10:27:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-01-17T10:27:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-sync-token", + "name": "spring-sync-token", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-19T17:09:21+00:00", "endpoint": "https://springdocchecks.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-19T17:09:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-19T17:09:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/springdocchecks", + "name": "SpringDocChecks", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-20T05:54:32+00:00", "endpoint": "https://t-vvidyasaga-ac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-20T05:54:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-20T05:54:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac", + "name": "t-vvidyasaga-ac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-23T16:43:34+00:00", "endpoint": "https://t-vvidyasaga-ac-learn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-23T16:43:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-23T16:43:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac-learn", + "name": "t-vvidyasaga-ac-learn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-27T17:42:41+00:00", "endpoint": "https://t-vvidyasaga-ac2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-27T17:42:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-27T17:42:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac2", + "name": "t-vvidyasaga-ac2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-12T16:26:03+00:00", "endpoint": "https://telemetryhashvalidation.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-12T16:26:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-13T23:01:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/telemetryhashvalidation", + "name": "TelemetryHashValidation", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-03-15T20:28:18+00:00", "endpoint": "https://testh.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-03-15T20:28:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-03-15T20:28:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/testh", + "name": "testh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-16T02:10:36+00:00", "endpoint": "https://tolani.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-16T02:10:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-16T02:17:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani", + "name": "tolani", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-29T21:40:07+00:00", "endpoint": "https://tolani-api-version-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-29T21:40:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-29T21:40:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-api-version-test", + "name": "tolani-api-version-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T17:56:34+00:00", "endpoint": "https://tolani-cnry-dev-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T17:56:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T17:56:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-cnry-dev-test", + "name": "tolani-cnry-dev-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "2196a2a0-d665-409c-a05a-470b2b6409bf", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-06-19T20:20:22+00:00", + "endpoint": "https://tolani-demo.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-06-19T20:20:22+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-06-23T20:58:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-demo", + "name": "tolani-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T03:59:14+00:00", "endpoint": "https://tolani-prod-aad-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T03:59:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-19T21:22:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-aad-test", + "name": "tolani-prod-aad-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-01T16:38:22+00:00", "endpoint": "https://tolani-snap-ref-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-01T16:38:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-09T21:20:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-snap-ref-demo", + "name": "tolani-snap-ref-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-15T00:05:33+00:00", "endpoint": "https://tolani-snapshot-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-15T00:05:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-15T00:13:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-snapshot-test", + "name": "tolani-snapshot-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-19T18:22:29+00:00", "endpoint": "https://tolani-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-19T18:22:29+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-07-22T22:41:23+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-store", + "name": "tolani-store", "tags": {"myTestTag": "[12,14,15]", "myTestTag2": + "{\"key\":\"value\"}", "myTestTag3": "askldfjlksdjfksdf\\"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-24T22:15:44+00:00", "endpoint": "https://tolani-test-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-24T22:15:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-24T22:15:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-test-1", + "name": "tolani-test-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "brazilsouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-11T15:37:27+00:00", "endpoint": "https://brzls.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-11T15:37:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-11T15:37:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/brzls", + "name": "Brzls", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T17:29:23+00:00", "endpoint": "https://albertofori-notification-canadacentral.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-10T17:29:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T18:10:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-canadacentral", + "name": "albertofori-notification-canadacentral", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-05-29T20:34:57+00:00", "endpoint": "https://avgupta-appc-cac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-29T20:34:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-29T20:35:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-cac", + "name": "avgupta-appc-cac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.ManagedIdentity/userAssignedIdentities/junbchen-identity-cmk": + {"principalId": "e790947e-9f1d-4382-af0f-eec738f38956", "clientId": "43310a7e-10ee-4a8d-95d5-512587f292b9"}}, + "principalId": "c315f504-623d-47f4-8c17-5990a848717b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-07T14:26:45+00:00", + "endpoint": "https://junbchenconfig-demo-ca.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://junbchenkeyvault.vault.azure.net/keys/key1/6998a4384b444f4bad0bf27a556ad115", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-07T14:26:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T06:18:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-demo-ca", + "name": "junbchenconfig-demo-ca", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastasia", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T06:45:35+00:00", "endpoint": "https://appc-6oexkucpmwqte.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T06:45:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T09:57:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-rg-azd-test/providers/Microsoft.AppConfiguration/configurationStores/appc-6oexkucpmwqte", + "name": "appc-6oexkucpmwqte", "tags": {"azd-env-name": "test"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastasia", + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-07-31T02:07:56+00:00", + "endpoint": "https://linglingye-appconfig-test.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-31T02:07:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-15T08:21:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linglingye-rg/providers/Microsoft.AppConfiguration/configurationStores/linglingye-appconfig-test", + "name": "linglingye-appconfig-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastasia", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-03-05T00:58:22+00:00", "endpoint": "https://teststore2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2021-03-05T00:58:22+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-05-10T06:06:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vendorteamtestrg/providers/Microsoft.AppConfiguration/configurationStores/teststore2", + "name": "TestStore2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-07T12:21:12+00:00", "endpoint": "https://202503071050snapshotfilters5in556ck5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:21:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:21:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050snapshotfilters5in556ck5", + "name": "202503071050SnapshotFilters5in556ck5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-07T12:21:12+00:00", "endpoint": "https://202503071050snapshotstoreonrneh6qvta.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:21:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:21:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050snapshotstoreonrneh6qvta", + "name": "202503071050SnapshotStoreonrneh6qvta", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T18:33:42+00:00", "endpoint": "https://albertofori-notification-frc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-11-10T18:33:42+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-09-11T09:16:13+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-frc", + "name": "albertofori-notification-frc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, + "principalId": "03682d8e-25ea-4541-a59b-9ebbbc02a84f", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-05-17T16:27:19+00:00", + "endpoint": "https://haiyiwen-francecentral-0517.azconfig.io", "encryption": + {"keyVaultProperties": {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt-2", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-17T16:27:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-12T17:24:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-francecentral-0517", + "name": "haiyiwen-francecentral-0517", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:51:58+00:00", "endpoint": "https://snapshotstore3tzfoxsj2hh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:51:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:51:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstore3tzfoxsj2hh", + "name": "SnapshotStore3tzfoxsj2hh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:53:28+00:00", "endpoint": "https://snapshotstore6nglgwfngm4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:53:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:53:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstore6nglgwfngm4", + "name": "SnapshotStore6nglgwfngm4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-19T19:57:22+00:00", "endpoint": "https://snapshotstorecw2f475e3rbcjdgongmzj3n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:57:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:57:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorecw2f475e3rbcjdgongmzj3n", + "name": "SnapshotStorecw2f475e3rbcjdgongmzj3n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T04:41:14+00:00", "endpoint": "https://snapshotstoredtargmcnsz3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:41:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:41:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoredtargmcnsz3", + "name": "SnapshotStoredtargmcnsz3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:02:07+00:00", "endpoint": "https://snapshotstorekz4vgltrfnd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:02:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:02:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorekz4vgltrfnd", + "name": "SnapshotStorekz4vgltrfnd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T04:42:38+00:00", "endpoint": "https://snapshotstoren7gxfapmtjw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:42:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:42:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoren7gxfapmtjw", + "name": "SnapshotStoren7gxfapmtjw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-19T19:56:01+00:00", "endpoint": "https://snapshotstoreopjrr76ymkn6nu453hufygh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:56:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:56:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoreopjrr76ymkn6nu453hufygh", + "name": "SnapshotStoreopjrr76ymkn6nu453hufygh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-01-29T23:28:22+00:00", "endpoint": "https://snapshotstoretpfayszap3s.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbwbtajdklwfk67dv4364xpuqyofxkkayxfyccf3lna6dulmb54f3trwrfxt7kqumw/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoretpfayszap3s", + "name": "SnapshotStoretpfayszap3s", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:03:21+00:00", "endpoint": "https://snapshotstorexkvbufgx7cu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:03:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:03:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorexkvbufgx7cu", + "name": "SnapshotStorexkvbufgx7cu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-06T10:09:10+00:00", "endpoint": "https://freestore45.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-06T10:09:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T10:15:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestore45", + "name": "freestore45", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-07T07:55:12+00:00", "endpoint": "https://freeteststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-07T07:55:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:15:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freeteststore1", + "name": "freeteststore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-22T09:57:08+00:00", "endpoint": "https://testfree.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-22T09:57:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-22T09:58:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testfree", + "name": "testfree", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-02T07:53:38+00:00", "endpoint": "https://testfree-cwanjau.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-02T07:53:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:50:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testfree-cwanjau", + "name": "testfree-cwanjau", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "germanywestcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-06T09:56:07+00:00", "endpoint": "https://freestoreeee.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-06T09:56:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T10:05:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestoreeee", + "name": "freeStoreeee", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uaenorth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-31T20:44:08+00:00", "endpoint": "https://xuxu-premium-test-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2024-05-31T20:44:08+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-05-31T20:44:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-premium-test-1", + "name": "xuxu-premium-test-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "norwayeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-05-12T20:17:59+00:00", "endpoint": "https://jlinares-noe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-12T20:17:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-17T09:11:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-noe", + "name": "jlinares-noe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southafricanorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-05-17T21:28:52+00:00", "endpoint": "https://jlinares-test-zan.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-05-17T21:28:52+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-05-17T21:28:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-zan", + "name": "jlinares-test-zan", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "ukwest", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-25T18:39:43+00:00", "endpoint": "https://albertoforiteststore3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-25T18:39:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-25T18:39:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforiteststore3", + "name": "albertoforitestStore3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T18:05:55+00:00", "endpoint": "https://avgupta-appc-wus3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-23T18:05:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-10T23:11:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus3", + "name": "avgupta-appc-wus3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-31T16:36:31+00:00", "endpoint": "https://jimmy-arm-kv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-31T16:36:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-31T16:38:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmy-arm-kv", + "name": "jimmy-arm-kv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-15T20:48:29+00:00", "endpoint": "https://jimmyca-local-auth-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-15T20:48:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-15T20:48:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-local-auth-test", + "name": "jimmyca-local-auth-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-17T18:47:49+00:00", "endpoint": "https://jimmyca-temp-repro.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-17T18:47:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-17T18:47:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-temp-repro", + "name": "jimmyca-temp-repro", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-13T20:07:21+00:00", "endpoint": "https://jlinares-kj-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-13T20:07:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-13T20:08:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-kj-test", + "name": "jlinares-kj-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "brazilsoutheast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-02-10T07:12:05+00:00", "endpoint": "https://jlinares-brse.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-10T07:12:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-02-10T07:12:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-brse", + "name": "jlinares-brse", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-10-19T16:35:22+00:00", "endpoint": "https://abcappc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-10-19T16:35:22+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-30T22:58:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/abcappc", + "name": "abcAppC", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-24T17:22:12+00:00", "endpoint": "https://abcdevtest123.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-04-24T17:22:12+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-17T21:40:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_test1/providers/Microsoft.AppConfiguration/configurationStores/abcdevtest123", + "name": "abcdevTest123", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-19T19:00:55+00:00", "endpoint": "https://bugbash-test-exp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-19T19:00:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-19T19:00:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/minhaz-test/providers/Microsoft.AppConfiguration/configurationStores/bugbash-test-exp", + "name": "bugbash-test-exp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-22T02:28:03+00:00", "endpoint": "https://haiyiwen-dev-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-22T02:28:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-22T02:28:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-dev-swc", + "name": "haiyiwen-dev-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:40:56+00:00", "endpoint": "https://haiyiwen-swc-0716-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:40:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:40:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-swc-0716-1", + "name": "haiyiwen-swc-0716-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-13T00:19:15+00:00", "endpoint": "https://jiyu-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-13T00:19:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-13T00:21:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-swc", + "name": "jiyu-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-02-13T22:31:11+00:00", "endpoint": "https://jlinares-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-13T22:31:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-02-17T17:57:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-swc", + "name": "jlinares-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-12T09:12:08+00:00", "endpoint": "https://mgich-swc.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": "d272d921-c6fa-4394-889a-acb85a9de520"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-12T09:12:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-12T09:12:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-swc", + "name": "mgich-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-17T20:31:20+00:00", "endpoint": "https://portal-test-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-17T20:31:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T20:38:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-swc", + "name": "portal-test-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-01-22T22:31:08+00:00", "endpoint": "https://tolani-prod-swc-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-22T22:31:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-22T22:31:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-swc-1", + "name": "tolani-prod-swc-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "switzerlandwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-07-01T18:05:05+00:00", "endpoint": "https://jlinares-slw1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-01T18:05:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-07-01T18:05:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-slw1", + "name": "jlinares-slw1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "qatarcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-08-05T22:33:14+00:00", "endpoint": "https://jlinares-test-qac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-05T22:33:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-05T22:33:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-qac", + "name": "jlinares-test-qac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southindia", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-08-14T04:10:16+00:00", "endpoint": "https://jlinares-sin-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-14T04:10:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-14T04:10:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-sin-test", + "name": "jlinares-sin-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "polandcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-11T17:58:49+00:00", "endpoint": "https://jlinares-plc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-11T17:58:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-11T17:59:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-plc", + "name": "jlinares-plc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:16:04+00:00", "endpoint": "https://jlinares-cae.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:16:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-cae", + "name": "jlinares-cae", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "norwaywest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:17:12+00:00", "endpoint": "https://jlinares-now.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:17:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:17:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-now", + "name": "jlinares-now", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:19:10+00:00", "endpoint": "https://jlinares-auc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:19:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-31T21:47:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-auc", + "name": "jlinares-auc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiacentral2", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:20:00+00:00", "endpoint": "https://jlinares-auc2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:20:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-22T23:30:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-auc2", + "name": "jlinares-auc2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francesouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:24:27+00:00", "endpoint": "https://jlinares-frs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:24:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:24:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-frs", + "name": "jlinares-frs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "israelcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-08T22:28:48+00:00", "endpoint": "https://jlinares-ilc-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-08T22:28:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-29T21:06:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-ilc-test", + "name": "jlinares-ilc-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southafricawest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-19T21:22:00+00:00", "endpoint": "https://jlinares-zaw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-19T21:22:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-19T21:22:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-zaw", + "name": "jlinares-zaw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "mexicocentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-01T22:05:42+00:00", "endpoint": "https://jlinares-mxc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-01T22:05:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-01T22:07:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-mxc", + "name": "jlinares-mxc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "spaincentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T17:59:45+00:00", "endpoint": "https://albertofori-notification-spaincentral.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T17:59:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-29T18:02:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-spaincentral", + "name": "albertofori-notification-spaincentral", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "spaincentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-29T21:04:44+00:00", "endpoint": "https://jlinares-esc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-29T21:04:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-29T21:07:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-esc", + "name": "jlinares-esc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "newzealandnorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-09-25T16:56:29+00:00", "endpoint": "https://jlinares-nzn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-25T16:56:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-25T16:56:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-nzn", + "name": "jlinares-nzn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uaecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-07-22T20:33:25+00:00", "endpoint": "https://jlinares-uaec.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-22T20:33:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-22T20:33:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-uaec", + "name": "jlinares-uaec", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "jioindiacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-07-22T20:20:55+00:00", "endpoint": "https://jlinares-jinc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-22T20:20:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-22T20:20:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-jinc", + "name": "jlinares-jinc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-06T02:14:44+00:00", "endpoint": "https://app-central-us-euap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 1728000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-03-06T02:14:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-05T19:04:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/app-central-us-euap", + "name": "app-central-us-euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-10T20:11:10+00:00", "endpoint": "https://avgupta-pe-appc-cuseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc-cuseuap/privateEndpointConnections/dupe-connection-name", + "name": "dupe-connection-name", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-cuseuap/providers/Microsoft.Network/privateEndpoints/tolani-pe-1"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-10T20:11:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-10T16:59:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc-cuseuap", + "name": "avgupta-pe-appc-cuseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2021-12-14T21:54:18+00:00", "endpoint": "https://jimmyca-cuseuap-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cuseuap-3/privateEndpointConnections/jimmyca-pe", + "name": "jimmyca-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.Network/privateEndpoints/jimmyca-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-12-14T21:54:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T05:44:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cuseuap-3", + "name": "jimmyca-cuseuap-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, + "principalId": "83480881-97ec-43f7-8dfc-8200cb4ac000", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-10-16T16:09:26+00:00", + "endpoint": "https://jiyu-cuseuap-store-1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, "privateEndpointConnections": null, + "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-10-16T16:09:26+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:56+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-cuseuap-store-1", + "name": "jiyu-cuseuap-store-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-07T07:59:52+00:00", "endpoint": "https://jiyu-cuseuap-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-07T07:59:52+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:33+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-1/providers/Microsoft.AppConfiguration/configurationStores/jiyu-cuseuap-test2", + "name": "jiyu-cuseuap-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-02-02T18:32:20+00:00", "endpoint": "https://jlinares-cuseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-02T18:32:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-02T18:32:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-cuseuap", + "name": "jlinares-cuseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-07T18:16:04+00:00", "endpoint": "https://kjeong-portal-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-07T18:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-05T14:26:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/kjeong-portal-test", + "name": "kjeong-portal-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-15T00:46:21+00:00", "endpoint": "https://nspinttestpoer5zfwwjmp2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-15T00:46:21+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:13+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/nspinttestpoer5zfwwjmp2", + "name": "nspinttestpoer5zfwwjmp2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "identity": {"type": "SystemAssigned", "principalId": + "6f851a0b-ea65-444a-bf7e-209c41feaabc", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-03-01T03:21:20+00:00", + "endpoint": "https://portal-test3.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-01T03:21:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-03T20:52:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test3", + "name": "portal-test3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-05-01T22:40:28+00:00", "endpoint": "https://albertofori-canary-statistics-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-01T22:40:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-07T23:54:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-canary-statistics-test", + "name": "albertofori-canary-statistics-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-28T21:46:59+00:00", "endpoint": "https://albertofori-notification-euap-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-28T21:46:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-28T21:46:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-euap-test", + "name": "albertofori-notification-euap-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-09T23:19:34+00:00", "endpoint": "https://albertofori-notification-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-09T23:19:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-09T23:21:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-test", + "name": "albertofori-notification-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-25T17:21:39+00:00", "endpoint": "https://avgupta-appc-eus2euap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-25T17:21:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-03T01:44:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus2euap", + "name": "avgupta-appc-eus2euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "identity": {"type": "SystemAssigned", "principalId": + "76d7f893-7d86-4e17-8095-3428a0f517dd", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-04T21:19:03+00:00", + "endpoint": "https://cdnconfigs.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-04T21:19:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-15T22:47:29+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/cdnconfigs", + "name": "cdnconfigs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-11T14:25:58+00:00", "endpoint": "https://haiyiwen-eus2euap-0311.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-03-11T14:25:58+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-28T19:22:20+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2euap-0311", + "name": "haiyiwen-eus2euap-0311", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-05-19T18:00:03+00:00", "endpoint": "https://haiyiwen-euseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-05-19T18:00:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-05-15T23:43:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-euseuap", + "name": "haiyiwen-euseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-10-20T16:09:11+00:00", "endpoint": "https://haiyiwen-euseuap-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-20T16:09:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-10-20T16:09:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-euseuap-2", + "name": "haiyiwen-euseuap-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jimmyca-wus/providers/microsoft.managedidentity/userassignedidentities/jimmyca-mi-4": + {"principalId": "949c3968-a2e3-4bdc-b9fe-920f4d5a183f", "clientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, + "principalId": "8462ba54-c3ac-4a7e-ae69-f49bb0525330", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2020-02-14T00:05:52+00:00", + "endpoint": "https://jimmyca-eus2euap.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": null, + "createdByType": null, "createdAt": "2020-02-14T00:05:52+00:00", "lastModifiedBy": + null, "lastModifiedByType": null, "lastModifiedAt": "2021-08-05T15:50:34+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-eus2euap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-eus2euap", + "name": "jimmyca-eus2euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-07T20:43:21+00:00", "endpoint": "https://jiyu-canary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe8", + "name": "jiyu-pe8", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe8"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe-13", + "name": "jiyu-pe-13", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-13"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe-14", + "name": "jiyu-pe-14", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-14"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-07T20:43:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T23:14:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary", + "name": "jiyu-canary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-11-21T00:29:25+00:00", "endpoint": "https://storeincanary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-11-21T00:29:25+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-11-21T00:29:25+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/storeincanary", + "name": "StoreInCanary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-29T17:42:37+00:00", "endpoint": "https://testplugincanary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T17:42:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-29T17:42:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testplugincanary", + "name": "testplugincanary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedensouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-01T00:16:04+00:00", "endpoint": "https://appconfig-dotnetprovider-integrationtest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-01T00:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-24T22:30:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dotnetprovider-integrationtest/providers/Microsoft.AppConfiguration/configurationStores/appconfig-dotnetprovider-integrationtest", + "name": "appconfig-dotnetprovider-integrationtest", "tags": {}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "swedensouth", + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-09-19T21:45:59+00:00", + "endpoint": "https://jlinares-sws-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-09-19T21:45:59+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-09-19T21:46:00+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-sws-test", + "name": "jlinares-sws-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T17:22:44+00:00", "endpoint": "https://albertofori-notification-test-twn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T17:22:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-08T20:41:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-test-twn", + "name": "albertofori-notification-test-twn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-26T23:42:16+00:00", "endpoint": "https://jlinares-twn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-26T23:42:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-26T23:44:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-twn", + "name": "jlinares-twn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorthwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T20:26:19+00:00", "endpoint": "https://jlinares-twnw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T20:26:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-29T20:32:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-twnw", + "name": "jlinares-twnw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "israelnorthwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-12T01:32:16+00:00", "endpoint": "https://albertofori-notification-ilnw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-12T01:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-12T01:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-ilnw", + "name": "albertofori-notification-ilnw", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZtbT%2bNGFID%2fi1X1CRMIS6MiraopeNsUSKidKF2Ul4kzCU58Y8ZOsiD%2be885doZJoFJfzxuwyq6%2bPdeZ%2bXj1crWr7pJ8bbyrV28SRKPrYDAKxd048q68p6oqzVWnk8lcLlWm8upUvtRancZF1jH1zMQ6KaukyE2n15tfytnZL35Pzef%2bF6VifxarX%2f3Lbnx%2bPutdzmYXvU6pi00yV9p07pNYF6ZYVKeiLK%2bLfJEsay3xr%2brE7ndRVWhlfpNl4m%2fgc%2fDnX7tn3S8%2b%2fENn5z%2f%2fZNZJOSrWKv9qFHxubopax8o78ZhSrJIs%2bxFLP66NL8uy%2ba8AHAwMt4js6l1dKVMZDCEwBIIfw0LJCvJ9kaSV0giTVxuZpZuLZ7N70s%2fLp%2bdd1YYnGIfDh4BX0ZRSy0wBmgGIaDge%2fYlBElFf8OKwpeLPi4309xknxhG2sr5AKl5EVZHKPPFlrXxMO78LARoMQwgQwzRDgrpcajlXC62wF4xvKdtYxgSG2Nyv18Y%2fB5CmqXWZgWBGqV2pdIIzncYusDRDhhtLUyhUJBiQ30Px2L9jmF0z%2fZJiG74WA3Ej2v2FV16t6nwWP6m8WVv8ucoKP5ZtlfCbKphTNEqw%2bX4LxeA6YBkWk8vSPBUNy269mdWL5a4X10B1OwwDnrmGwcFh4sdbma8kwvwRhPdi8N05xPAqH8ShfFPNjBQBTXxeELj1%2b6VWWVJnzeqCXRlAJuI7vzVslSa5hAOonxe4ttBYEd%2fCPjRpXMZ4hcbC0LB8kTkQjW%2bxXHhxyHQGh7FiUejEtugLYGn2lwteMDYo6xWVC3A4KwzjiplpQyUzCW4CmJx0qcQrNO0ZjPZ9s41p348m%2fdFjEN6JwQ2%2fwrG5ZtItduW%2fxUiELENjSaiVPcsYaKg59wc33C4vLItJ8n0LeBhihvEOTZliVJrjDOM%2bFktsY80Cw7jk82ILGPZGjHdqyRpT6xiG2c2FrXugeT9hMry5sCALukfuR6EI7ngnWJLG%2b1bs7PyMy%2f9FYvnfB%2f%2f0r4e8Q5PtaNg%2fiD7PrdJWizIIMggmj4HAac%2f5RJm%2f0GFS8LwgsyGppcKY%2fNUf0h7Ju1BWSY4wLcQ4CsbigdcBrCx0JVNqxHi%2bb99a%2bHHgIaVM6yUEBEQK%2fQNYIjoWcx72Zmv2I3Ik%2bhMx4Ny%2fqi32L4eD8agHFpz1zRpGQeEH41zxwdVrlSySmF4p%2fSQFuLcTT%2bpMLJdaLWWl5mQAQWsT4T2Ao9F0L%2fVaafjR6%2fRQapp6V1OuWtPUO5m%2bt3NuJJ%2bqTYSE6TmOuPEc6E3E0cwnbhz%2fR3GyYWrsE26I75oTgdDUxWDhkzQ3ls9UJ6KytyFIxo3qg%2b5ESDS8eKYcrnyO8kQ4rfTENDbv2hPBtMs4OxiIy7H6RDzNEOqy43H1JwJxXg%2b5wZACRRAHEhQ3jM81KFs1HKeOfWeHAoEl9ECG4hae%2f9KhiMwVoriBYZBcJYqAPkpR3LBcLYqQxq0YxQ3kEzWKeGDNaeUobkT24hT0KEJxHktoeWMLhLXkgyLVJBxJUtxYnDsU274viKfZdeBrXnchNttaVYpYnHWH48HHMqEu1ZSQK0xxC9EHZapFOpCmuEHZGKE2RUCuOMWWhlocqFNNiPCXv%2bjRiy3PXp8ingOBii0SKFRE8y5RsUUBjYpQmmUHJxBbFFCpCMXeuLVPrGyBQED6FIjdbYjt1KhUEVJzUqW1lG14QKsilgOxii3NXq0iJOe8wLolgF5FPAeCFdsQgWLVRMeRrNjCgGZFMEeiFVseUK2IB25BuM8d1K2I5Ui4YhsbVK4I6EC64objaldE0771oHjFjQUPOa56RTyOfMWNx244e%2f2KgBxxiS0QaEvHLKxXAtSwCOhIxOIWIOca8aOKNfXevLd%2fAQ%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '365837' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:18:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 8c41ce10-7ed6-445e-a652-213b2b475354 + - ac029794-b799-49bc-901d-c5efad79062d + - 79548385-f693-43fb-99d5-dd7779b61318 + - f1fa5924-7107-4565-8db8-2ed0b5161ec4 + - 0efc7e73-403d-47df-a3a7-41dc46cf54b6 + - 9896a9ce-4d21-487b-8483-c36ae2331e30 + - 2b1e8c06-0a5c-45d5-a898-3b5f470e5bcc + - f8fa8518-2717-42a2-91f8-13bf9d2274b3 + - 403c786a-eec2-4ab9-89d9-0492e37ca10b + - 23100792-6784-41b2-a0a8-d1444af1bd10 + - 7c097334-18f8-4cab-9951-c951e07636cd + - 6f271bf0-6e06-4dc9-a397-46ff2977b9c9 + - 29e02024-2fc3-48ff-8fdf-f36fc8c99fb1 + - f109bef2-31d6-4732-851e-1a3734e30eb1 + - d8d7e196-b8f0-411f-9e5b-d284a7177361 + - c4913805-4716-4eec-bf04-42cf9094be18 + - 16c4c918-4e1e-4c92-acc8-182963b85681 + - b2c193ee-f0cb-48b0-b8f8-933316cec08a + - 4787e5f4-6500-4d8a-8af2-e034435f6f07 + - 3013482d-88d0-4669-9644-e4895e3111d5 + - 45e208c2-e69e-49a9-af84-7ebfd76a7e11 + - b4e1cd71-0bb2-45ee-9a77-db805e65e425 + - 9f1e6937-edf4-427b-867a-04ed43cbc1e4 + - 5fb286da-fa9b-44a7-9ddb-a91dfc3f3004 + - a4cee83a-21fd-4a3f-a163-bd12c23dd67a + - 2252bb00-b079-4700-818d-87c5ee2fedca + - e9d79774-a1d5-4685-b0db-f681580a36da + - 4d5dc6fc-2ed5-4dd5-addf-cab19c836984 + - 4ec83b60-66c4-4972-b613-f48adc2d2313 + - ad430cd4-e3d3-4f72-97c4-e4051320dbf5 + - 9ff33371-5941-4b73-9339-1eca358e5411 + - 2dbd774a-3bb7-40b5-8ecb-2fa91d80293b + - 32ec798b-171f-4490-8883-2eeffd8eec1c + - f2b097e2-5f77-4903-8879-c08601cd4cd7 + - d2094216-32aa-4814-89f5-7c8fc7e75392 + - 576e6bc1-0ebd-4a00-b8a8-1469574e7172 + - 69b3c288-8862-46ef-9f10-a55004291f39 + - 658bb52d-b294-4a54-888c-fb8f177d79a9 + - e6634f7c-df05-4363-9ee4-fcea7bc5dd97 + - df7bf3f3-30b7-4858-abe1-ded752be5c0b + - ef498e7d-6b5d-4061-99d5-30196dbacd30 + - fb7d1ca4-28bc-4d14-a87b-7efeefae13f3 + - 8e4690df-0975-4481-93f9-3bc3c1346b32 + - fd8db642-5334-45e5-9f75-b4e3a9ee1a07 + - 70435b2e-7e97-4a06-88fb-ea2188798e38 + - 6eaf27ef-cf08-4111-8f6b-4b24e49bf092 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 87D3FA1EE59342DD89409531FB4F2BF2 Ref B: MAA201060515045 Ref C: 2025-08-15T03:18:29Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label --prefix + -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZtbT%2BNGFID/i1X1CRMIS6MiraopeNsUSKidKF2Ul4kzCU58Y8ZOsiD%2Be885doZJoFJfzxuwyq6%2BPdeZ%2BXj1crWr7pJ8bbyrV28SRKPrYDAKxd048q68p6oqzVWnk8lcLlWm8upUvtRancZF1jH1zMQ6KaukyE2n15tfytnZL35Pzef%2BF6VifxarX/3Lbnx%2BPutdzmYXvU6pi00yV9p07pNYF6ZYVKeiLK%2BLfJEsay3xr%2BrE7ndRVWhlfpNl4m/gc/DnX7tn3S8%2B/ENn5z/ZNZJOSrWKv9qFHxubopax8o78ZhSrJIs%2BxFLP66NL8uy%2Ba8AHAwMt4js6l1dKVMZDCEwBIIfw0LJCvJ9kaSV0giTVxuZpZuLZ7N70s/Lp%2Bdd1YYnGIfDh4BX0ZRSy0wBmgGIaDge/YlBElFf8OKwpeLPi4309xknxhG2sr5AKl5EVZHKPPFlrXxMO78LARoMQwgQwzRDgrpcajlXC62wF4xvKdtYxgSG2Nyv18Y/B5CmqXWZgWBGqV2pdIIzncYusDRDhhtLUyhUJBiQ30Px2L9jmF0z/ZJiG74WA3Ej2v2FV16t6nwWP6m8WVv8ucoKP5ZtlfCbKphTNEqw%2BX4LxeA6YBkWk8vSPBUNy269mdWL5a4X10B1OwwDnrmGwcFh4sdbma8kwvwRhPdi8N05xPAqH8ShfFPNjBQBTXxeELj1%2B6VWWVJnzeqCXRlAJuI7vzVslSa5hAOonxe4ttBYEd/CPjRpXMZ4hcbC0LB8kTkQjW%2BxXHhxyHQGh7FiUejEtugLYGn2lwteMDYo6xWVC3A4KwzjiplpQyUzCW4CmJx0qcQrNO0ZjPZ9s41p348m/dFjEN6JwQ2/wrG5ZtItduW/xUiELENjSaiVPcsYaKg59wc33C4vLItJ8n0LeBhihvEOTZliVJrjDOM%2BFktsY80Cw7jk82ILGPZGjHdqyRpT6xiG2c2FrXugeT9hMry5sCALukfuR6EI7ngnWJLG%2B1bs7PyMy/9FYvnfB/0r4e8Q5PtaNg/iD7PrdJWizIIMggmj4HAac/5RJm/0GFS8LwgsyGppcKY/NUf0h7Ju1BWSY4wLcQ4CsbigdcBrCx0JVNqxHi%2Bb99a%2BHHgIaVM6yUEBEQK/QNYIjoWcx72Zmv2I3Ik%2BhMx4Ny/qi32L4eD8agHFpz1zRpGQeEH41zxwdVrlSySmF4p/SQFuLcTT%2BpMLJdaLWWl5mQAQWsT4T2Ao9F0L/VaafjR6/RQapp6V1OuWtPUO5m%2Bt3NuJJ%2BqTYSE6TmOuPEc6E3E0cwnbhz/R3GyYWrsE26I75oTgdDUxWDhkzQ3ls9UJ6KytyFIxo3qg%2B5ESDS8eKYcrnyO8kQ4rfTENDbv2hPBtMs4OxiIy7H6RDzNEOqy43H1JwJxXg%2B5wZACRRAHEhQ3jM81KFs1HKeOfWeHAoEl9ECG4hae/9KhiMwVoriBYZBcJYqAPkpR3LBcLYqQxq0YxQ3kEzWKeGDNaeUobkT24hT0KEJxHktoeWMLhLXkgyLVJBxJUtxYnDsU274viKfZdeBrXnchNttaVYpYnHWH48HHMqEu1ZSQK0xxC9EHZapFOpCmuEHZGKE2RUCuOMWWhlocqFNNiPCXv%2BjRiy3PXp8ingOBii0SKFRE8y5RsUUBjYpQmmUHJxBbFFCpCMXeuLVPrGyBQED6FIjdbYjt1KhUEVJzUqW1lG14QKsilgOxii3NXq0iJOe8wLolgF5FPAeCFdsQgWLVRMeRrNjCgGZFMEeiFVseUK2IB25BuM8d1K2I5Ui4YhsbVK4I6EC64objaldE0771oHjFjQUPOa56RTyOfMWNx244e/2KgBxxiS0QaEvHLKxXAtSwCOhIxOIWIOca8aOKNfXevLd/AQ%3D%3D + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:50+00:00", "endpoint": "https://featurefiltertestquqw5w3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestquqw5w3", + "name": "FeatureFilterTestquqw5w3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:30+00:00", "endpoint": "https://featurefiltertestvmh264rozmfl2rfdmwj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestvmh264rozmfl2rfdmwj", + "name": "FeatureFilterTestvmh264rozmfl2rfdmwj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://featurefiltertestwroox3kw3473yar2iys.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestwroox3kw3473yar2iys", + "name": "FeatureFilterTestwroox3kw3473yar2iys", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:17+00:00", "endpoint": "https://featurenamespacetest3zfo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetest3zfo", + "name": "FeatureNamespaceTest3zfo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-29T23:28:21+00:00", "endpoint": "https://featurenamespacetest43nd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3deuywmwdctmiw3s7hmjcw2tmqnelmu4o67k22372j3wxo6fmrhq2w3zzwjipe7l5/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetest43nd", + "name": "FeatureNamespaceTest43nd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://featurenamespacetestdm3m.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestdm3m", + "name": "FeatureNamespaceTestdm3m", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://featurenamespacetestl2rv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestl2rv", + "name": "FeatureNamespaceTestl2rv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:58:27+00:00", "endpoint": "https://featurenamespacetestomjxuvpkpmgwfeje.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:58:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:58:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestomjxuvpkpmgwfeje", + "name": "FeatureNamespaceTestomjxuvpkpmgwfeje", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:28+00:00", "endpoint": "https://featurenamespacetestooeq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestooeq", + "name": "FeatureNamespaceTestooeq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:36:08+00:00", "endpoint": "https://featurenamespacetestvjoivvcjifknwzao.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:36:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:36:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestvjoivvcjifknwzao", + "name": "FeatureNamespaceTestvjoivvcjifknwzao", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://featurenamespacetestxed3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestxed3", + "name": "FeatureNamespaceTestxed3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://featurenamespacetestysdks2bhjk7idleh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestysdks2bhjk7idleh", + "name": "FeatureNamespaceTestysdks2bhjk7idleh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:14+00:00", "endpoint": "https://featuretest3fn4mdqdwkvlndvuwfdofk3nr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretest3fn4mdqdwkvlndvuwfdofk3nr", + "name": "FeatureTest3fn4mdqdwkvlndvuwfdofk3nr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:20+00:00", "endpoint": "https://featuretest4o7tljrbfkuwj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretest4o7tljrbfkuwj", + "name": "FeatureTest4o7tljrbfkuwj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://featuretestckfolm256bht24scu2gxt2jxo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestckfolm256bht24scu2gxt2jxo", + "name": "FeatureTestckfolm256bht24scu2gxt2jxo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:38+00:00", "endpoint": "https://featuretestct5gfchdp63sj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestct5gfchdp63sj", + "name": "FeatureTestct5gfchdp63sj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:49:44+00:00", "endpoint": "https://featuretestk65tt5ts6zra7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:49:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:49:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk4hbkzkjzu2at45fpfafydyfdxvqrlfr3xepr3lp6uzumo5kdsauqvuew6f3tw62u/providers/Microsoft.AppConfiguration/configurationStores/featuretestk65tt5ts6zra7", + "name": "FeatureTestk65tt5ts6zra7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:15+00:00", "endpoint": "https://featuretestkqkahggahaewy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestkqkahggahaewy", + "name": "FeatureTestkqkahggahaewy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:14+00:00", "endpoint": "https://featuretesto4e67aajlsexw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretesto4e67aajlsexw", + "name": "FeatureTesto4e67aajlsexw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:29+00:00", "endpoint": "https://featuretestop22xb7epknx4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestop22xb7epknx4", + "name": "FeatureTestop22xb7epknx4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:31+00:00", "endpoint": "https://featuretestzx7ts5ebrspx23s53i5nb2k2y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestzx7ts5ebrspx23s53i5nb2k2y", + "name": "FeatureTestzx7ts5ebrspx23s53i5nb2k2y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-07-24T07:29:54+00:00", "endpoint": "https://freestore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-24T07:29:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:18:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestore", + "name": "freeStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-09T07:58:37+00:00", "endpoint": "https://haiyiwen-010925.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-01-09T07:58:37+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-01T21:11:00+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-010925", + "name": "haiyiwen-010925", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-16T19:14:44+00:00", "endpoint": "https://haiyiwen-eus-0116.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-01-16T19:14:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-06-11T15:57:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-0116", + "name": "haiyiwen-eus-0116", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-01-16T08:16:09+00:00", + "endpoint": "https://haiyiwen-eus-011625.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-011625/privateEndpointConnections/pe-test-eus2-011625", + "name": "pe-test-eus2-011625", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.Network/privateEndpoints/pe-test-eus2-011625"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-16T08:16:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:06:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-011625", + "name": "haiyiwen-eus-011625", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2024-03-11T14:22:45+00:00", "endpoint": "https://haiyiwen-eus-0311.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-03-11T14:22:45+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-04T23:30:27+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-0311", + "name": "haiyiwen-eus-0311", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-10T16:50:17+00:00", "endpoint": "https://haiyiwen-templatedeployment-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-10T16:50:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-10T16:50:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-templatedeployment-1", + "name": "haiyiwen-templatedeployment-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "640e6a52-a59d-48cf-a8d4-f41017c598fe", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-18T13:57:31+00:00", + "endpoint": "https://identitytest35gnbkkbe4fuezy67dlwn2y5.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:57:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:58:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytest35gnbkkbe4fuezy67dlwn2y5", + "name": "IdentityTest35gnbkkbe4fuezy67dlwn2y5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "34ffa33e-f25d-4c67-9253-c2d17c037adc", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-19T19:51:15+00:00", + "endpoint": "https://identitytestbe2akedryikn4m35wjkaqprj.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestbe2akedryikn4m35wjkaqprj", + "name": "IdentityTestbe2akedryikn4m35wjkaqprj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "438e333f-bb2e-497c-97b8-dd202b78c026", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-08-14T05:50:01+00:00", + "endpoint": "https://identitytestcs7kbf253whm.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestcs7kbf253whm", + "name": "IdentityTestcs7kbf253whm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "5a4a8ed8-9446-4999-93d2-9818ea8132a9", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T03:43:27+00:00", + "endpoint": "https://identitytestf72x2di6qyer.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestf72x2di6qyer", + "name": "IdentityTestf72x2di6qyer", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "b0ee3229-1ce2-40d1-a196-b8459b9f9d6b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T04:32:16+00:00", + "endpoint": "https://identitytesthm4vi6lxafkx.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytesthm4vi6lxafkx", + "name": "IdentityTesthm4vi6lxafkx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "20901f43-0e74-480b-9d79-80b7a5bda9d3", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T02:53:34+00:00", + "endpoint": "https://identitytestkpchhiqxtnsq.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestkpchhiqxtnsq", + "name": "IdentityTestkpchhiqxtnsq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "42e1eeb5-d772-47fd-a51c-ab9664dbc084", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-18T13:35:06+00:00", + "endpoint": "https://identitytestpt6bwjon56pcoo6xapfdkyur.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:35:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:35:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestpt6bwjon56pcoo6xapfdkyur", + "name": "IdentityTestpt6bwjon56pcoo6xapfdkyur", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7x3az6ip3htuovmj7yywt4wnb4e2pzvtynszyldonhf5uvclyl523rjteqosjhkqw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/UserAssignedIdentityten5": + {"principalId": "b7e8662e-ea87-44a8-a499-f612e314174c", "clientId": "c555e5da-6354-4a44-acaa-c1226a17c985"}}, + "principalId": "91287d71-e497-4d5c-8782-9eb2d16347f4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-12-03T08:41:53+00:00", + "endpoint": "https://identitytestqlutj2gls4u7.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:53+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7x3az6ip3htuovmj7yywt4wnb4e2pzvtynszyldonhf5uvclyl523rjteqosjhkqw/providers/Microsoft.AppConfiguration/configurationStores/identitytestqlutj2gls4u7", + "name": "IdentityTestqlutj2gls4u7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "209c3dad-96ee-4da7-bf9b-81bcb4c6ee89", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T02:22:10+00:00", + "endpoint": "https://identitytestwha7v4vki3m5.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestwha7v4vki3m5", + "name": "IdentityTestwha7v4vki3m5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:59:07+00:00", "endpoint": "https://importexporttest4buijfjw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:59:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:59:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdewrmekwlmmelzxyujxxqakoibx7umiujirxwe7z5lqr6mkvdzyuw5ovod645k3ab/providers/Microsoft.AppConfiguration/configurationStores/importexporttest4buijfjw", + "name": "ImportExportTest4buijfjw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:23+00:00", "endpoint": "https://importexporttestcnu3plvdikjy7dxroazf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestcnu3plvdikjy7dxroazf", + "name": "ImportExportTestcnu3plvdikjy7dxroazf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:15+00:00", "endpoint": "https://importexporttestfllunlafc2qqdvoasyuk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestfllunlafc2qqdvoasyuk", + "name": "ImportExportTestfllunlafc2qqdvoasyuk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:07+00:00", "endpoint": "https://importexporttestgkjpjcmg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:50:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:50:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestgkjpjcmg", + "name": "ImportExportTestgkjpjcmg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:41:57+00:00", "endpoint": "https://importexporttestjozvptem.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:41:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs4u4depezol5gm5zemiy4hklc4cl7kot6w4mdlqmsd3nlq6bhmbo47vaorof2y7on/providers/Microsoft.AppConfiguration/configurationStores/importexporttestjozvptem", + "name": "ImportExportTestjozvptem", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:00:30+00:00", "endpoint": "https://importexporttestoggywcna.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:00:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:00:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestoggywcna", + "name": "ImportExportTestoggywcna", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:07+00:00", "endpoint": "https://importexporttestukq4e3atuwnwdnrzlyim.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestukq4e3atuwnwdnrzlyim", + "name": "ImportExportTestukq4e3atuwnwdnrzlyim", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:39:40+00:00", "endpoint": "https://importexporttestyouwfl6v.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:39:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:39:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestyouwfl6v", + "name": "ImportExportTestyouwfl6v", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://importtest7ful2grtebgoiq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtest7ful2grtebgoiq", + "name": "ImportTest7ful2grtebgoiq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://importtestgiddobrgr672gjpl3hucqravfy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestgiddobrgr672gjpl3hucqravfy", + "name": "ImportTestgiddobrgr672gjpl3hucqravfy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://importtestlypau4klicvvgj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestlypau4klicvvgj", + "name": "ImportTestlypau4klicvvgj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://importtestq7zk6uhonoio5k.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestq7zk6uhonoio5k", + "name": "ImportTestq7zk6uhonoio5k", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:44:47+00:00", "endpoint": "https://importtesttcbikylpv6ng27xb3emuessgdi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:44:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:44:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtesttcbikylpv6ng27xb3emuessgdi", + "name": "ImportTesttcbikylpv6ng27xb3emuessgdi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:11+00:00", "endpoint": "https://importtestvguwb2vces34ma.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestvguwb2vces34ma", + "name": "ImportTestvguwb2vces34ma", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://importtestxpbvk6phmolm2x.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestxpbvk6phmolm2x", + "name": "ImportTestxpbvk6phmolm2x", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T14:07:21+00:00", "endpoint": "https://importtestxx236biyz2eshdvim62cvnctxv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T14:07:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T14:07:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestxx236biyz2eshdvim62cvnctxv", + "name": "ImportTestxx236biyz2eshdvim62cvnctxv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d0a289d3-184f-4608-bc59-c38f24b695a8", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-05-01T18:05:52+00:00", + "endpoint": "https://jimmyca-ai-sample.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-05-01T18:05:52+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-06-23T02:01:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-ai-sample", + "name": "jimmyca-ai-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-16T17:00:19+00:00", "endpoint": "https://jimmyca-eus-rep.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-16T17:00:19+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-01-06T21:48:03+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-eus-rep", + "name": "jimmyca-eus-rep", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-04-04T02:23:55+00:00", + "endpoint": "https://jiyu-createtest5.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, "privateEndpointConnections": null, + "publicNetworkAccess": "Disabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 3, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-04T02:23:55+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-04-04T02:24:08+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-policytest/providers/Microsoft.AppConfiguration/configurationStores/jiyu-createtest5", + "name": "jiyu-createtest5", "tags": {"tag": "tagv"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-03T21:56:21+00:00", "endpoint": "https://jiyu-eus.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-eus", + "name": "jiyu-pe-eus", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-eus"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-weu", + "name": "jiyu-pe-weu", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-weu"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-eus2", + "name": "jiyu-pe-eus2", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-eus2"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-test", + "name": "jiyu-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-03T21:56:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-03T21:56:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus", + "name": "jiyu-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2023-02-15T23:49:31+00:00", "endpoint": "https://jiyu-eus1.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://jiyu-keyvault1.vault.azure.net/keys/kekeke", + "identityClientId": null}}, "privateEndpointConnections": [], "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-15T23:49:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-08T23:43:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus1", + "name": "jiyu-eus1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "fbaa111b-8b39-4f75-906d-b4300c88aef1", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-02-16T01:50:00+00:00", + "endpoint": "https://jiyu-eus3.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus3/privateEndpointConnections/staticip-test", + "name": "staticip-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/staticip-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-16T01:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T00:08:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus3", + "name": "jiyu-eus3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-18T23:30:42+00:00", "endpoint": "https://jiyu-policyteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-18T23:30:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-19T00:01:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-policytest2/providers/Microsoft.AppConfiguration/configurationStores/jiyu-policyteststore", + "name": "jiyu-policyteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-29T21:47:07+00:00", "endpoint": "https://jiyu-teststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore1/privateEndpointConnections/jiyu-pe-5", + "name": "jiyu-pe-5", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-5"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T21:47:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-02T22:07:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore1", + "name": "jiyu-teststore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-03-19T23:10:19+00:00", "endpoint": "https://jiyu-throttle-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-03-19T23:10:19+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2022-10-11T23:32:37+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-throttle-1", + "name": "jiyu-throttle-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-17T00:37:26+00:00", "endpoint": "https://jlinares-appconfig-eastus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-17T00:37:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-17T01:55:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-eventgridtests/providers/Microsoft.AppConfiguration/configurationStores/jlinares-appconfig-eastus", + "name": "jlinares-appconfig-eastus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-11-18T20:26:57+00:00", "endpoint": "https://jlinares-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-18T20:26:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-02T01:15:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-eus", + "name": "jlinares-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-15T05:37:24+00:00", "endpoint": "https://junbchenconfig-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-pe/privateEndpointConnections/junbchen-pe-test", + "name": "junbchen-pe-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/junbchen-pe-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-15T05:37:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-15T08:42:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-pe", + "name": "junbchenconfig-pe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-19T04:06:47+00:00", "endpoint": "https://juniwang-app-ev2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-19T04:06:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-19T04:06:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-aks/providers/Microsoft.AppConfiguration/configurationStores/juniwang-app-ev2", + "name": "juniwang-app-ev2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d25770c8-9687-44f3-a3bd-cca223b9c6a4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-08T03:33:40+00:00", + "endpoint": "https://juniwang-appc.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-08T03:33:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T23:59:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-aks/providers/Microsoft.AppConfiguration/configurationStores/juniwang-appc", + "name": "juniwang-appc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-30T16:59:23+00:00", "endpoint": "https://kjeong-store-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-30T16:59:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-30T16:59:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/kjeong-store-eus", + "name": "kjeong-store-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://kvrevisiontest4fqq5hbnxzmfbwe5dby2vr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontest4fqq5hbnxzmfbwe5dby2vr", + "name": "KVRevisionTest4fqq5hbnxzmfbwe5dby2vr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://kvrevisiontest4kyrrschro.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontest4kyrrschro", + "name": "KVRevisionTest4kyrrschro", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://kvrevisiontestanuibrjieg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestanuibrjieg", + "name": "KVRevisionTestanuibrjieg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://kvrevisiontestibwkfz57qn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestibwkfz57qn", + "name": "KVRevisionTestibwkfz57qn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:10+00:00", "endpoint": "https://kvrevisiontestkoz2orto53hamn6kwqjrwi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestkoz2orto53hamn6kwqjrwi", + "name": "KVRevisionTestkoz2orto53hamn6kwqjrwi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:57+00:00", "endpoint": "https://kvrevisiontestsnib44xkg5dbxlix2d6pep.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestsnib44xkg5dbxlix2d6pep", + "name": "KVRevisionTestsnib44xkg5dbxlix2d6pep", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:33+00:00", "endpoint": "https://kvrevisiontestuexzu42fm2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestuexzu42fm2", + "name": "KVRevisionTestuexzu42fm2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://kvrevisiontestxsqvwqjrg6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestxsqvwqjrg6", + "name": "KVRevisionTestxsqvwqjrg6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:02:56+00:00", "endpoint": "https://kvsetimporttest67l2slzrs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:02:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:02:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttest67l2slzrs", + "name": "KVSetImportTest67l2slzrs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:52:40+00:00", "endpoint": "https://kvsetimporttest7fzhph6k3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:52:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:52:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttest7fzhph6k3", + "name": "KVSetImportTest7fzhph6k3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://kvsetimporttestdfvwuuwjhqdkccxnon3h5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestdfvwuuwjhqdkccxnon3h5", + "name": "KVSetImportTestdfvwuuwjhqdkccxnon3h5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:04+00:00", "endpoint": "https://kvsetimporttestdtjdjob3d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtkn533s5bkfkpe7zbxjwrxpfrqlsvdzfa42gkxliahqseuj7hheaq37kwjdupgrzz/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestdtjdjob3d", + "name": "KVSetImportTestdtjdjob3d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:44+00:00", "endpoint": "https://kvsetimporttestjetl2c5hb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2d54inm2sz2hhdcwlskpsbcf2rqtxjk35s6cz3paltnbiyqomhp2huz4qkwzxygfs/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestjetl2c5hb", + "name": "KVSetImportTestjetl2c5hb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://kvsetimporttestlfet64gx7k247aqey5idx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestlfet64gx7k247aqey5idx", + "name": "KVSetImportTestlfet64gx7k247aqey5idx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T06:02:59+00:00", "endpoint": "https://kvsetimporttestn2hbyeqob.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T06:02:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T06:02:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestn2hbyeqob", + "name": "KVSetImportTestn2hbyeqob", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:42:14+00:00", "endpoint": "https://kvsetimporttestobgriqz5h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:42:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:42:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestobgriqz5h", + "name": "KVSetImportTestobgriqz5h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:07+00:00", "endpoint": "https://kvsetimporttestv6g2yjvgh3vknvlvyhyk6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:56:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:56:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestv6g2yjvgh3vknvlvyhyk6", + "name": "KVSetImportTestv6g2yjvgh3vknvlvyhyk6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:30:57+00:00", "endpoint": "https://kvsetimporttestx2c3iqwtw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:30:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:30:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestx2c3iqwtw", + "name": "KVSetImportTestx2c3iqwtw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:45:02+00:00", "endpoint": "https://kvtest56m7lyhkxttu5o7cy6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:45:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:45:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtest56m7lyhkxttu5o7cy6", + "name": "KVTest56m7lyhkxttu5o7cy6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://kvtest7gxwoslebimyurrpzo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtest7gxwoslebimyurrpzo", + "name": "KVTest7gxwoslebimyurrpzo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:47:50+00:00", "endpoint": "https://kvtesta5gfdkk3ofsqlz3axj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:47:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:47:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6tafb7kmkszhmrkpiaqncvjdbzopdvao2unlvdouj4qwnswxhzvwhnqwtuvfhap5f/providers/Microsoft.AppConfiguration/configurationStores/kvtesta5gfdkk3ofsqlz3axj", + "name": "KVTesta5gfdkk3ofsqlz3axj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:27+00:00", "endpoint": "https://kvtestaabkjvmmvryoyrcym4f23ipzwbr3il.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestaabkjvmmvryoyrcym4f23ipzwbr3il", + "name": "KVTestaabkjvmmvryoyrcym4f23ipzwbr3il", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:48+00:00", "endpoint": "https://kvtestazuhrmngjidjfiubou.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestazuhrmngjidjfiubou", + "name": "KVTestazuhrmngjidjfiubou", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:01+00:00", "endpoint": "https://kvtestblkljn3if2ed3lee4c.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu6kv5zqu66qjrcvxa7phtrzraaastvxrgb5ba5ksua3wgiaybmuxxco24istvbllk/providers/Microsoft.AppConfiguration/configurationStores/kvtestblkljn3if2ed3lee4c", + "name": "KVTestblkljn3if2ed3lee4c", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:58+00:00", "endpoint": "https://kvtestcncxmq2fygiiwpxlm5irfpslm6rv4y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestcncxmq2fygiiwpxlm5irfpslm6rv4y", + "name": "KVTestcncxmq2fygiiwpxlm5irfpslm6rv4y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:45+00:00", "endpoint": "https://kvtestctemdbzrufgk7gou63.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsjj2m7spcrfqtj5d6xghazzzkbnunaevcb2w5d3aw7nsxyv5srgumrba3fxgc5fj/providers/Microsoft.AppConfiguration/configurationStores/kvtestctemdbzrufgk7gou63", + "name": "KVTestctemdbzrufgk7gou63", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://kvtestddruwaekub4w4vikfhmilya5pnoqp6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestddruwaekub4w4vikfhmilya5pnoqp6", + "name": "KVTestddruwaekub4w4vikfhmilya5pnoqp6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:45:36+00:00", "endpoint": "https://kvtestdzk745w7veqm4qhmg7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:45:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:45:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestdzk745w7veqm4qhmg7", + "name": "KVTestdzk745w7veqm4qhmg7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:54:25+00:00", "endpoint": "https://kvtestedguv5zz26ia6jl5j6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:54:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:54:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestedguv5zz26ia6jl5j6", + "name": "KVTestedguv5zz26ia6jl5j6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://kvtestgypdqe3asrj2yppdaw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestgypdqe3asrj2yppdaw", + "name": "KVTestgypdqe3asrj2yppdaw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:38+00:00", "endpoint": "https://kvtesthhewfemq55gzr7f2ut.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyh2hpoaraulrpisivp7wvr6kewphm76xkiphd3smodzvjlevaaoetk2e5fmwkbvn6/providers/Microsoft.AppConfiguration/configurationStores/kvtesthhewfemq55gzr7f2ut", + "name": "KVTesthhewfemq55gzr7f2ut", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:13+00:00", "endpoint": "https://kvtesthtjrqiylsqskz3c6d5ejdr4mbl6buh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesthtjrqiylsqskz3c6d5ejdr4mbl6buh", + "name": "KVTesthtjrqiylsqskz3c6d5ejdr4mbl6buh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:57:03+00:00", "endpoint": "https://kvtestiaobbatslphjvsdvem.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:57:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:57:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgngwosihwuvyfcdzfp2vjsulqt7fl4vqupolm4lnvn7eojzu3kntls4upzts4b2mbd/providers/Microsoft.AppConfiguration/configurationStores/kvtestiaobbatslphjvsdvem", + "name": "KVTestiaobbatslphjvsdvem", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=3ZDdSsQwEIXfJYhXpmnr1mJhkbIIXlgEu971Jj%2bz3Wy3ScikRSx9d%2bMPuM%2fg5Zw5c4bvLMTAe3jWZkBSLeSxbvdvLanIMQSHFWMjN7yHEUxI%2bMfkIZF2ZDgJlF67oK1BVpaq4CK9oyUoRTcAkgoJ97TIZZaJshDitmTO21kr8MgaLb1FewhJ7dzOmoPuJ8%2b%2fopi8nNpgPeADd5rO8S7ut3mab2h8lGbXVzhot7cDmO0wB8CguRWCBzy742lGNcNI1ps%2fuBfzZM8qIkaR%2b7Huew89D6C%2bMyJw%2fdqQH3%2fD%2fQA%2bSkv320dHqu4%2fNNKRlayf"}' + headers: + cache-control: + - no-cache + content-length: + - '114080' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:18:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - ca018374-bbe3-463e-823a-bd92b4506c2f + - 97a0b279-e9d8-44bf-b2ff-f2c2eb4c6513 + - 2ceff450-ab30-4027-9dc5-d79359b63f3a + - 085757ea-4e31-458b-8a2a-058f1602f6f8 + - b5244408-dded-48ba-8d27-181961a34781 + - 3257e413-a1cf-4bb3-8fdf-d9bc9d8ecd0a + - c3e14a10-5f8b-47d9-ba71-87b65d3c293f + - e6645350-4d2f-4756-9d76-11ae5dd2ee1c + - 2cb98623-8334-4894-9e76-7d84f789dc3c + - 6ed1d21a-1fa7-40d1-91b3-b2b1a970fab5 + - 3e51453e-7538-4637-b103-eee01b19e5bb + - 6592ae4a-3c20-42b8-a0c6-815b5e80e9b9 + - f3abfb55-1316-4828-93d8-5f5564dd2b28 + - 92131f31-9286-4a62-a598-207c630ce9b9 + - 98d9de0c-51e6-4fac-81f4-2525b3c806f2 + - ff16c437-ff8b-4706-935a-f030d546548b + - 09a123e9-1cba-4317-bd2e-c5e5b607befc + - a061b626-1e3a-4eb7-b805-1b3fa8336b00 + - bdeac5f0-bb9a-4e86-9952-6d05e1c6fac5 + - 10fbf464-609a-4574-b1d7-01f137d4ca2f + - a08bd07f-960f-4f6f-a35f-ed68605c340d + - 15027d23-d251-4fe7-9c95-a991286dfbc0 + - fcf81945-2c75-458d-a4cb-1e5aecaa6a16 + - ecfaddd1-5360-4336-ad38-9dcf51f12ac3 + - 0da88fa6-4d6b-45a4-a5ce-6af526b38b89 + - 588c4ed1-3b59-4eb0-b676-dbf80876db03 + - 798613c5-e37a-443f-8e80-e15493e5609a + - e7346cd2-e6b5-4bb9-8b67-1047b161b162 + - 79eecdfa-fc05-41d2-91ce-386b8f75b91b + - 9d9e054b-ac74-4736-8752-92a1a1c2eec2 + - 59770e39-b9da-43e6-b82f-7bbdb7dbcc1a + - f62a860f-b01c-4f21-a532-c7330c986c95 + - 5a91a419-5651-42f6-9ce9-2f7ef88a771d + - 4c3bb76a-24ab-4ab6-baf8-5a43e55e826e + - 91a745e8-791a-42a3-94a0-3e13478efded + - 9bc89ace-9c61-43f2-9738-5c3149433368 + - a099146d-087f-4303-9ccc-10f665f1df41 + - 50740a92-6d79-4c9a-a2b9-f2373f0ff01d + - 081024dd-d029-4d69-9626-b6ee6884c045 + - ca35947a-3243-4c01-a0c2-d95da9584b0c + - 39b5d42b-77d2-423b-9dd2-8f928d07978a + - 34f6628b-d149-4589-9bc9-8771bff95d50 + - ed9602ca-e55f-4df8-a1cc-2d5948382c31 + - a8be81fe-8d3a-4e09-8dfd-3bc4616986c3 + - 4b224a7f-ebc2-4046-85eb-1c1554a72218 + - 1e7e2507-31b0-48ce-bed5-28f91ecc50f6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 2B63F0ED74C34F5081B12E04EA222F84 Ref B: MAA201060515019 Ref C: 2025-08-15T03:18:33Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label --prefix + -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=3ZDdSsQwEIXfJYhXpmnr1mJhkbIIXlgEu971Jj%2Bz3Wy3ScikRSx9d%2BMPuM/g5Zw5c4bvLMTAe3jWZkBSLeSxbvdvLanIMQSHFWMjN7yHEUxI%2BMfkIZF2ZDgJlF67oK1BVpaq4CK9oyUoRTcAkgoJ97TIZZaJshDitmTO21kr8MgaLb1FewhJ7dzOmoPuJ8%2B/opi8nNpgPeADd5rO8S7ut3mab2h8lGbXVzhot7cDmO0wB8CguRWCBzy742lGNcNI1ps/uBfzZM8qIkaR%2B7Huew89D6C%2BMyJw/dqQH3/D/QA%2BSkv320dHqu4/NNKRlayf + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:51+00:00", "endpoint": "https://kvtestihwc3syiqee5ah3iga.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestihwc3syiqee5ah3iga", + "name": "KVTestihwc3syiqee5ah3iga", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:13+00:00", "endpoint": "https://kvtestizmnigytm42qanhxha.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestizmnigytm42qanhxha", + "name": "KVTestizmnigytm42qanhxha", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:42+00:00", "endpoint": "https://kvtestkopv2uhhschtzb2e5n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestkopv2uhhschtzb2e5n", + "name": "KVTestkopv2uhhschtzb2e5n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://kvtestl2ormjtchf7btc3f3u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvhvtc3xrd7c3vvwzmfi4ufblyqdjqcnuenotltaz3gnpg6ixy5v4czw52bht6tnea/providers/Microsoft.AppConfiguration/configurationStores/kvtestl2ormjtchf7btc3f3u", + "name": "KVTestl2ormjtchf7btc3f3u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:50+00:00", "endpoint": "https://kvtestloxzjt7t3tfagqhl2ap6xxngz4wpgd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestloxzjt7t3tfagqhl2ap6xxngz4wpgd", + "name": "KVTestloxzjt7t3tfagqhl2ap6xxngz4wpgd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://kvtesto5vmioemxphsuub3xx7r4sky45ni2f.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesto5vmioemxphsuub3xx7r4sky45ni2f", + "name": "KVTesto5vmioemxphsuub3xx7r4sky45ni2f", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:46+00:00", "endpoint": "https://kvtestp2kbuun66d6ps473pg7ysw3epzlwut.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestp2kbuun66d6ps473pg7ysw3epzlwut", + "name": "KVTestp2kbuun66d6ps473pg7ysw3epzlwut", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:09+00:00", "endpoint": "https://kvtestpj2t6uk6lvtsd7iun2vykrabrj5qjo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestpj2t6uk6lvtsd7iun2vykrabrj5qjo", + "name": "KVTestpj2t6uk6lvtsd7iun2vykrabrj5qjo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://kvtestppk7lrbah7ynxlhe33.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestppk7lrbah7ynxlhe33", + "name": "KVTestppk7lrbah7ynxlhe33", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://kvtestrsei3hg3nqsaujkzgg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestrsei3hg3nqsaujkzgg", + "name": "KVTestrsei3hg3nqsaujkzgg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:43+00:00", "endpoint": "https://kvtestsd77jfbv4d3uzcytfp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg4rrldloh2p7oo6rzuoqwvws4cpfwypu6bzbhqkwdnn3rwkl4dafchtml6zrkztbm/providers/Microsoft.AppConfiguration/configurationStores/kvtestsd77jfbv4d3uzcytfp", + "name": "KVTestsd77jfbv4d3uzcytfp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:38+00:00", "endpoint": "https://kvtesttptetw6qztfw3gv674.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesttptetw6qztfw3gv674", + "name": "KVTesttptetw6qztfw3gv674", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:34:30+00:00", "endpoint": "https://kvtestuycl4et7tf5eb7lsdu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:34:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:34:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestuycl4et7tf5eb7lsdu", + "name": "KVTestuycl4et7tf5eb7lsdu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://kvtestv3dtl6bonwids7ib5x.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestv3dtl6bonwids7ib5x", + "name": "KVTestv3dtl6bonwids7ib5x", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:24:19+00:00", "endpoint": "https://kvtestycmo2q63cxt6vvf67r.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:24:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:24:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestycmo2q63cxt6vvf67r", + "name": "KVTestycmo2q63cxt6vvf67r", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-20T02:14:07+00:00", "endpoint": "https://linglingye-appconfig-quickstart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-20T02:14:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-20T02:14:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linglingye-rg/providers/Microsoft.AppConfiguration/configurationStores/linglingye-appconfig-quickstart", + "name": "linglingye-appconfig-quickstart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-08T20:43:45+00:00", "endpoint": "https://mbtestappconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-08T20:43:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-09T22:26:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/mbtestappconfig", + "name": "mbTestAppConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-05T13:16:53+00:00", "endpoint": "https://mgich-agent-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-05T13:16:53+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T13:16:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-agent-demo", + "name": "mgich-agent-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-07-20T13:49:51+00:00", "endpoint": "https://mgich-demo-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-demo-store/privateEndpointConnections/mgich-demo-privatendpoint", + "name": "mgich-demo-privatendpoint", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.Network/privateEndpoints/mgich-demo-privatendpoint"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-20T13:49:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-29T09:44:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-demo-store", + "name": "Mgich-Demo-store", "tags": {"Tag1": "Value1"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-28T08:17:37+00:00", "endpoint": "https://mgich-dev-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-28T08:17:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-28T08:17:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-dev-store", + "name": "mgich-dev-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "userAssignedIdentities": + {}, "principalId": "7262de24-6e9f-4834-9f65-b1cb524e252e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-08-11T21:32:20+00:00", + "endpoint": "https://mgich-ff.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": null}}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-ff/privateEndpointConnections/mgich", + "name": "mgich", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.Network/privateEndpoints/mgich"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T21:32:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-26T15:07:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-ff", + "name": "Mgich-ff", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-27T23:35:45+00:00", "endpoint": "https://mgich-largestoretest-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-27T23:35:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-11T12:53:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-largestoretest-1", + "name": "Mgich-largestoretest-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-10T07:08:17+00:00", "endpoint": "https://mgich-readerstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-10T07:08:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-26T14:56:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-readerstore", + "name": "mgich-readerstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "8123be57-97f1-4182-b1b1-f6af700545c4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-10-04T16:57:29+00:00", + "endpoint": "https://mgich-stage-1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-04T16:57:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-04T17:38:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-stage-1", + "name": "mgich-stage-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-07-01T10:23:28+00:00", "endpoint": "https://mgich-store-no-experiments.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-01T10:23:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T17:05:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-store-no-experiments", + "name": "mgich-store-no-experiments", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-18T09:11:22+00:00", "endpoint": "https://mgich-store-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-18T09:11:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-18T09:11:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-store-pe", + "name": "mgich-store-pe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-04T18:17:49+00:00", "endpoint": "https://mgich-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-04T18:17:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-04T18:17:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-test2", + "name": "mgich-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mgich-userassignedIdentity": + {"principalId": "fe7ce57e-8668-4bc2-860c-a55b5ed3c20c", "clientId": "d272d921-c6fa-4394-889a-acb85a9de520"}, + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mgich-user2identity": + {"principalId": "d0c6a0b5-d9e2-4936-99e1-93f83c03fba5", "clientId": "246f2df7-bc14-43b6-bbab-292e9aa837c5"}}, + "principalId": "1faff273-6296-453e-8213-93e36511bafd", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2021-11-24T08:29:23+00:00", + "endpoint": "https://mgich-teststore.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": "d272d921-c6fa-4394-889a-acb85a9de520"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Enabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-11-24T08:29:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-30T12:33:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore", + "name": "Mgich-teststore", "tags": {"Tag1": "value 1"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-17T12:28:40+00:00", "endpoint": "https://mgich-teststore-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-17T12:28:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-11T13:06:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore-1", + "name": "mgich-teststore-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-14T09:20:39+00:00", "endpoint": "https://mgich-teststore-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-14T09:20:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-28T14:34:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore-3", + "name": "mgich-teststore-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-10T19:22:51+00:00", "endpoint": "https://mgich-teststore4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-10T19:22:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-03T09:10:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore4", + "name": "mgich-teststore4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-02T20:20:55+00:00", "endpoint": "https://mgich-teststsore-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-02T20:20:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-21T18:13:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststsore-3", + "name": "mgich-teststsore-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "a1c20165-034a-4ba2-8061-e0d4d16f24ae", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-20T22:42:06+00:00", + "endpoint": "https://mgmttest72er3mgxhdoinaqa.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnpau7zjt464gtz2wleqi36hu74ql74n5vvw35zhk7oaljwlxgx4oeph77eqifl5o5/providers/Microsoft.AppConfiguration/configurationStores/mgmttest72er3mgxhdoinaqa", + "name": "MgmtTest72er3mgxhdoinaqa", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "47a9f6ab-3291-480b-b56d-1e14e36050ea", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-19T19:55:12+00:00", + "endpoint": "https://mgmttestc7g3l35dzryuxxgvp4lglc5dizmw.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestc7g3l35dzryuxxgvp4lglc5dizmw", + "name": "MgmtTestc7g3l35dzryuxxgvp4lglc5dizmw", "tags": {"key": "value"}}, + {"type": "Microsoft.AppConfiguration/configurationStores", "location": "eastus", + "identity": {"type": "SystemAssigned", "principalId": "044952b4-d72c-472c-abf1-211644477cf9", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2025-07-10T04:40:17+00:00", "endpoint": "https://mgmttestdceucmwowzkwqmkq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:40:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:40:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestdceucmwowzkwqmkq", + "name": "MgmtTestdceucmwowzkwqmkq", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c635cc37-a672-4b57-bb8c-97c563ef1faa", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T05:32:22+00:00", + "endpoint": "https://mgmttestsmrvmso36npc46q2.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T05:32:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T05:32:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestsmrvmso36npc46q2", + "name": "MgmtTestsmrvmso36npc46q2", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c04393c4-b4ca-425c-ac71-d6fb8fd0e8c8", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T03:01:00+00:00", + "endpoint": "https://mgmttesttu422dgcjrdktv2i.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:01:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:01:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttesttu422dgcjrdktv2i", + "name": "MgmtTesttu422dgcjrdktv2i", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "029554f7-2d78-4e89-b35e-0def16f0607e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-12-03T08:41:56+00:00", + "endpoint": "https://mgmttesttyxczkyhxc6obdc3.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rga7cq7pqntyql7xxdl7ybrm5fu4ghzzzka7tz73vc26jiwpbnwrsibgsfkq7abl7dl/providers/Microsoft.AppConfiguration/configurationStores/mgmttesttyxczkyhxc6obdc3", + "name": "MgmtTesttyxczkyhxc6obdc3", "tags": {"Env": "Prod"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-13T21:11:18+00:00", "endpoint": "https://my-app-config-test-4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-13T21:11:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-13T21:11:18+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testresourcegroup/providers/Microsoft.AppConfiguration/configurationStores/my-app-config-test-4", + "name": "my-app-config-test-4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:47:59+00:00", "endpoint": "https://namingconventiontest5i2i.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:47:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:47:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontest5i2i", + "name": "NamingConventionTest5i2i", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:44+00:00", "endpoint": "https://namingconventiontestcmrm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestcmrm", + "name": "NamingConventionTestcmrm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:04+00:00", "endpoint": "https://namingconventiontestf6wx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdufzxonazjyfqql7zhvtnmptvqxvyghhi3piqf3w6fqffjd6elyw54aufbq4nohxe/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestf6wx", + "name": "NamingConventionTestf6wx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:14+00:00", "endpoint": "https://namingconventiontestr4z27s6inps2qahi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestr4z27s6inps2qahi", + "name": "NamingConventionTestr4z27s6inps2qahi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:57:50+00:00", "endpoint": "https://namingconventiontestzmts.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:57:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:57:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestzmts", + "name": "NamingConventionTestzmts", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:10+00:00", "endpoint": "https://newfmimport6jvm63gclqtfi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimport6jvm63gclqtfi", + "name": "NewFmImport6jvm63gclqtfi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:28+00:00", "endpoint": "https://newfmimport7breg65bpfkmk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimport7breg65bpfkmk", + "name": "NewFmImport7breg65bpfkmk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:42+00:00", "endpoint": "https://newfmimportcbirfdrxwcazblccfrcc56tr3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportcbirfdrxwcazblccfrcc56tr3", + "name": "NewFmImportcbirfdrxwcazblccfrcc56tr3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:13+00:00", "endpoint": "https://newfmimportifwskvg7yatnll65fmcw4lbvu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportifwskvg7yatnll65fmcw4lbvu", + "name": "NewFmImportifwskvg7yatnll65fmcw4lbvu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:23+00:00", "endpoint": "https://newfmimportiqle44dc5w75t.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportiqle44dc5w75t", + "name": "NewFmImportiqle44dc5w75t", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:21+00:00", "endpoint": "https://newfmimportycrjzhir3yc2jvaw5gj73xsh3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportycrjzhir3yc2jvaw5gj73xsh3", + "name": "NewFmImportycrjzhir3yc2jvaw5gj73xsh3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}, + "principalId": "2ace8798-912e-4525-8706-b2ea02068ac0", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-11-09T07:55:32+00:00", + "endpoint": "https://newstore.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-11-09T07:55:32+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-20T17:32:25+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/newstore", + "name": "NewStore", "tags": {"new ": "tag"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-07T17:33:44+00:00", "endpoint": "https://pipelinetask-teststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-07T17:33:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-07T17:33:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pipelinetask-canarytest/providers/Microsoft.AppConfiguration/configurationStores/pipelinetask-teststore", + "name": "pipelinetask-teststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-06T17:03:43+00:00", "endpoint": "https://portal-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-06T17:03:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T01:05:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test", + "name": "portal-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:40+00:00", "endpoint": "https://pubnetworknull26cngh42hn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5zneawsaijjrfwkpifdvbui3mpjvvozsommbvv2fvmzfoypa2gtwxcmwba2em7tm/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknull26cngh42hn", + "name": "PubNetworkNull26cngh42hn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:58+00:00", "endpoint": "https://pubnetworknullfgy4ldwvco.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T03:50:58+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T03:51:36+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknullfgy4ldwvco", + "name": "PubNetworkNullfgy4ldwvco", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:42:29+00:00", "endpoint": "https://pubnetworknulllk4mio7jtn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T04:42:29+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T04:43:09+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknulllk4mio7jtn", + "name": "PubNetworkNulllk4mio7jtn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:46+00:00", "endpoint": "https://pubnetworknullu2jkrdwwh23ireje5pi64g.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-03-19T19:56:46+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-19T19:57:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknullu2jkrdwwh23ireje5pi64g", + "name": "PubNetworkNullu2jkrdwwh23ireje5pi64g", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:41:50+00:00", "endpoint": "https://pubnetworktrueawirkzjx5u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T04:41:50+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T04:41:50+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktrueawirkzjx5u", + "name": "PubNetworkTrueawirkzjx5u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:18+00:00", "endpoint": "https://pubnetworktruelryl4o66fv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T03:50:18+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T03:50:18+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktruelryl4o66fv", + "name": "PubNetworkTruelryl4o66fv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:03+00:00", "endpoint": "https://pubnetworktrueqinrxqnezhqbvgsjjmoug5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-03-19T19:56:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-19T19:56:03+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktrueqinrxqnezhqbvgsjjmoug5", + "name": "PubNetworkTrueqinrxqnezhqbvgsjjmoug5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:41:57+00:00", "endpoint": "https://pubnetworktruet6yhv5rp5h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-12-03T08:41:57+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-12-03T08:41:57+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5zneawsaijjrfwkpifdvbui3mpjvvozsommbvv2fvmzfoypa2gtwxcmwba2em7tm/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktruet6yhv5rp5h", + "name": "PubNetworkTruet6yhv5rp5h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "493023af-0d46-48de-a070-eef831383228", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-11T12:40:56+00:00", + "endpoint": "https://replicastored2uyjofor3ac.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:40:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:40:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbkeprji7tmcxwyspsy2tof6gcb5zs6qod2fnn4tdtnbofbo3zzvokji5siqpbx3fv/providers/Microsoft.AppConfiguration/configurationStores/replicastored2uyjofor3ac", + "name": "ReplicaStored2uyjofor3ac", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-10T23:14:57+00:00", "endpoint": "https://rossgrambo-app-config-backup.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-10T23:14:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-10T23:35:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-app-config-backup", + "name": "rossgrambo-app-config-backup", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-20T22:16:45+00:00", "endpoint": "https://rossgrambo-app-configuration.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T22:16:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-11T00:24:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-app-configuration", + "name": "rossgrambo-app-configuration", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-08T18:53:19+00:00", "endpoint": "https://rossgrambo-flag-migration-testing.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-08T18:53:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T18:53:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-flag-migration-testing", + "name": "rossgrambo-flag-migration-testing", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-19T02:11:08+00:00", "endpoint": "https://rossgrambo-hackathon.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-19T02:11:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-19T02:11:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-hackathon/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-hackathon", + "name": "rossgrambo-hackathon", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-10T22:48:21+00:00", "endpoint": "https://samiconfigs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-10T22:48:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-04T18:58:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/samiconfigs", + "name": "samiconfigs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-01T18:44:00+00:00", "endpoint": "https://sdfsafdfdsffsf-albertofori.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-01T18:44:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-01T18:44:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/sdfsafdfdsffsf-albertofori", + "name": "sdfsafdfdsffsf-albertofori", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-04-06T23:31:37+00:00", "endpoint": "https://softdelete-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T23:31:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-15T06:08:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo", + "name": "softdelete-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/softdelete-demo-identity-2": + {"principalId": "c3b06559-ac00-409d-a3ec-183f811cfd0d", "clientId": "e6304037-2130-4a66-a0b5-0cef9e5fef38"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-06T22:35:49+00:00", + "endpoint": "https://softdelete-demo-cmk.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://softdelete-demo-keyvault.vault.azure.net/keys/key", + "identityClientId": "e6304037-2130-4a66-a0b5-0cef9e5fef38"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T22:35:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-07T23:34:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo-cmk", + "name": "softdelete-demo-cmk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/softdelete-demo-identity": + {"principalId": "d0286683-fe54-4978-b632-4879b57da219", "clientId": "e557af90-eee7-425b-9667-56b1faaaa184"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-06T23:32:42+00:00", + "endpoint": "https://softdelete-demo-purge-protection.azconfig.io", "encryption": + {"keyVaultProperties": {"keyIdentifier": "https://softdelete-demo-keyvault.vault.azure.net/keys/key", + "identityClientId": "e557af90-eee7-425b-9667-56b1faaaa184"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T23:32:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-06T23:33:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo-purge-protection", + "name": "softdelete-demo-purge-protection", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:16:25+00:00", "endpoint": "https://softdelete-retention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:16:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-14T23:15:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-retention", + "name": "softdelete-retention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:17:09+00:00", "endpoint": "https://softdelete-retention2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:17:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T05:18:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-retention2", + "name": "softdelete-retention2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:38:47+00:00", "endpoint": "https://source4w3kjzil5tkygz7f33.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:38:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:38:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source4w3kjzil5tkygz7f33", + "name": "Source4w3kjzil5tkygz7f33", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:17+00:00", "endpoint": "https://source4zg3mwqbsl6uidbigf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source4zg3mwqbsl6uidbigf", + "name": "Source4zg3mwqbsl6uidbigf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:49:30+00:00", "endpoint": "https://source5y7wpvryybmlgn255k.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:49:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:49:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source5y7wpvryybmlgn255k", + "name": "Source5y7wpvryybmlgn255k", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-29T23:28:22+00:00", "endpoint": "https://source756e3z4lxwuqzamkys.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtbmculosotxi5tvycr3ucsvrlgjvhqhtuqxxp5zjy4l3uns3dflynpwxjhqy2lti2/providers/Microsoft.AppConfiguration/configurationStores/source756e3z4lxwuqzamkys", + "name": "Source756e3z4lxwuqzamkys", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:41+00:00", "endpoint": "https://source7tkscrlyge2z2dwfnt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzsjv5ucgfl5xb3rkxbfhwzw2l663dsuksodvay6hol3lrqlffhbimwua3mxqneoxp/providers/Microsoft.AppConfiguration/configurationStores/source7tkscrlyge2z2dwfnt", + "name": "Source7tkscrlyge2z2dwfnt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:14+00:00", "endpoint": "https://sourcebonjncplltnwyxi3wxtbzajj3qudp7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcebonjncplltnwyxi3wxtbzajj3qudp7", + "name": "Sourcebonjncplltnwyxi3wxtbzajj3qudp7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:59:30+00:00", "endpoint": "https://sourceevcycu7vqqrwldss2d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:59:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:59:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceevcycu7vqqrwldss2d", + "name": "Sourceevcycu7vqqrwldss2d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:01+00:00", "endpoint": "https://sourceiawig3smul3natozz7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwyttwmni2xmbsaxrtp64sja6rdh2ocxcprrc5pwdogqijazx7f4vhljo5qfanoryn/providers/Microsoft.AppConfiguration/configurationStores/sourceiawig3smul3natozz7", + "name": "Sourceiawig3smul3natozz7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:38+00:00", "endpoint": "https://sourcesarqiu3ulixdcvfmne.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcesarqiu3ulixdcvfmne", + "name": "Sourcesarqiu3ulixdcvfmne", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:00+00:00", "endpoint": "https://sourcevsycmtag5msdxrntg4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguznozpjynfgaebftsnnrdc52h2scgoorpr6unkhktfxrcwsulo6qvsxb6b6j2jkfn/providers/Microsoft.AppConfiguration/configurationStores/sourcevsycmtag5msdxrntg4", + "name": "Sourcevsycmtag5msdxrntg4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:13+00:00", "endpoint": "https://sourcewh3zdqwqjr2ycwla34mzr57iwkd646.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewh3zdqwqjr2ycwla34mzr57iwkd646", + "name": "Sourcewh3zdqwqjr2ycwla34mzr57iwkd646", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:21+00:00", "endpoint": "https://sourcewrcreicjxj7w2yk2kl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewrcreicjxj7w2yk2kl", + "name": "Sourcewrcreicjxj7w2yk2kl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:42+00:00", "endpoint": "https://sourcewxcru6myjz22xt3cry.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewxcru6myjz22xt3cry", + "name": "Sourcewxcru6myjz22xt3cry", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://sourcexi35d6xknwvlpgfjdcjpfm4tbisikl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcexi35d6xknwvlpgfjdcjpfm4tbisikl", + "name": "Sourcexi35d6xknwvlpgfjdcjpfm4tbisikl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:04+00:00", "endpoint": "https://sourceykdeluxupgutssmtp4s2ndonnpmrfx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceykdeluxupgutssmtp4s2ndonnpmrfx", + "name": "Sourceykdeluxupgutssmtp4s2ndonnpmrfx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:27+00:00", "endpoint": "https://sourceyxduf5goewbviumeya.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceyxduf5goewbviumeya", + "name": "Sourceyxduf5goewbviumeya", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-02-14T14:44:25+00:00", "endpoint": "https://southcentralus-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-14T14:44:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-01-15T15:17:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/richardmuniu-appcfg-test/providers/Microsoft.AppConfiguration/configurationStores/southcentralus-test-store", + "name": "southcentralus-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-11T16:55:25+00:00", "endpoint": "https://spring-geo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T16:55:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-18T22:19:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-geo", + "name": "Spring-Geo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:03+00:00", "endpoint": "https://strictimporttest3vthtdkmhnlsf2jhpwqm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttest3vthtdkmhnlsf2jhpwqm", + "name": "StrictImportTest3vthtdkmhnlsf2jhpwqm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:01+00:00", "endpoint": "https://strictimporttesta5qjw7z4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiclp5jbwimqqqoxl5bbqjkggleqcwdnipdk4do7nmywdhkiwb6gnm6h3esjl6ekmb/providers/Microsoft.AppConfiguration/configurationStores/strictimporttesta5qjw7z4", + "name": "StrictImportTesta5qjw7z4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:47:05+00:00", "endpoint": "https://strictimporttestczhpt6di.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:47:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:47:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestczhpt6di", + "name": "StrictImportTestczhpt6di", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:04+00:00", "endpoint": "https://strictimporttestdwyif42s.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestdwyif42s", + "name": "StrictImportTestdwyif42s", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://strictimporttestj4kovvpa.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg43nb3b6jwngiura5rclypvjmdx62odg4tdxrdaytutt75yx2quuszpfdvp57kadz7/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestj4kovvpa", + "name": "StrictImportTestj4kovvpa", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://strictimporttestsagt6n6f6guarkkvv4ul.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestsagt6n6f6guarkkvv4ul", + "name": "StrictImportTestsagt6n6f6guarkkvv4ul", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://strictimporttestt36qwioiuroazvvivyy5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestt36qwioiuroazvvivyy5", + "name": "StrictImportTestt36qwioiuroazvvivyy5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:57:02+00:00", "endpoint": "https://strictimporttestvbzh72sl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:57:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:57:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestvbzh72sl", + "name": "StrictImportTestvbzh72sl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T20:57:06+00:00", "endpoint": "https://test-azconfig-net.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T20:57:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T20:57:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-net", + "name": "test-azconfig-net", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZDdSsQwEIXfJYhXpmnr1mJhkSKCFxbBXe96k5%2fZGmqTMJkusqXvbnQFfQUv58z5ZjhnYQ4%2b6Mm6MbJmYQ%2ftbv%2b6Yw17IwqxEWKSTg4wgaNMnmaETPtJxFlFjTaQ9S6KujaVVPkNr8EYvgHQXGm45VWpi0LVlVLXtQjoj9YARtFZjT76A2VtCPfeHewwo%2fw6JfTfaUceId7JYPkxcWm%2fLfNyw9OjvLi8iKMNez%2bC2xJE4vJ0hrkDYuvVb6pn9%2bjfTcqWRIlTOwwIgyQw33BK2r507OzvJI6ASVr6nyJ61vT%2fuoqerWz9BA%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '110916' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:18:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - ecc44563-b3f4-48b5-b31a-0056b1717a3f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5E364FF4C43441C8ABD4B4F60C7DA466 Ref B: MAA201060516053 Ref C: 2025-08-15T03:18:36Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label --prefix + -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZDdSsQwEIXfJYhXpmnr1mJhkSKCFxbBXe96k5/ZGmqTMJkusqXvbnQFfQUv58z5ZjhnYQ4%2B6Mm6MbJmYQ/tbv%2B6Yw17IwqxEWKSTg4wgaNMnmaETPtJxFlFjTaQ9S6KujaVVPkNr8EYvgHQXGm45VWpi0LVlVLXtQjoj9YARtFZjT76A2VtCPfeHewwo/w6JfTfaUceId7JYPkxcWm/LfNyw9OjvLi8iKMNez%2BC2xJE4vJ0hrkDYuvVb6pn9%2BjfTcqWRIlTOwwIgyQw33BK2r507OzvJI6ASVr6nyJ61vT/uoqerWz9BA%3D%3D + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T20:57:06+00:00", "endpoint": "https://test-azconfig-net-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T20:57:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T20:57:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-net-provider", + "name": "test-azconfig-net-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T21:01:29+00:00", "endpoint": "https://test-azconfig-python.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T21:01:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T21:01:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-python", + "name": "test-azconfig-python", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T21:01:29+00:00", "endpoint": "https://test-azconfig-python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T21:01:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T21:01:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-python-provider", + "name": "test-azconfig-python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-03-18T03:11:21+00:00", "endpoint": "https://test-deletion.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-03-18T03:11:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-03-18T03:11:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/richardmuniu-appcfg-test/providers/Microsoft.AppConfiguration/configurationStores/test-deletion", + "name": "test-deletion", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-09T22:36:24+00:00", "endpoint": "https://test-notification.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-09T22:36:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-09T23:17:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/test-notification", + "name": "test-notification", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-28T11:18:48+00:00", "endpoint": "https://test-revision-retention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-28T11:18:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T14:41:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/test-revision-retention", + "name": "test-revision-retention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-10T21:04:55+00:00", "endpoint": "https://test-template.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-10T21:04:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-10T21:04:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/test-template", + "name": "test-template", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-27T17:01:21+00:00", "endpoint": "https://testapp-1001.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-09-27T17:01:21+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-09-27T17:01:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-1001", + "name": "testapp-1001", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-27T16:59:45+00:00", "endpoint": "https://testapp-8778.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-8778/privateEndpointConnections/myconnection", + "name": "myconnection", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-AppConfiguration-6086/providers/Microsoft.Network/privateEndpoints/endpointxyz7285"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-27T16:59:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-27T16:59:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-8778", + "name": "testapp-8778", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T09:32:10+00:00", "endpoint": "https://testbug.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T09:32:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T13:16:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testbug", + "name": "testBug", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-13T17:58:05+00:00", "endpoint": "https://testcopilot.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-13T17:58:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:49:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testcopilot", + "name": "testCopilot", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-15T06:19:24+00:00", "endpoint": "https://testdev.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 172800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-15T06:19:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-25T08:00:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testdev", + "name": "testdev", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-25T21:04:05+00:00", "endpoint": "https://testdevsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-25T21:04:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-25T21:04:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/testdevsku", + "name": "testdevsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-23T07:57:12+00:00", "endpoint": "https://testrevisionretention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-23T07:57:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-23T07:58:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testrevisionretention", + "name": "testrevisionretention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-24T22:30:44+00:00", "endpoint": "https://teststestestestes.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-24T22:30:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-24T22:30:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-hackathon/providers/Microsoft.AppConfiguration/configurationStores/teststestestestes", + "name": "teststestestestes", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T07:43:13+00:00", "endpoint": "https://testtkeyvalueretention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T07:43:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:51:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testtkeyvalueretention", + "name": "testtkeyvalueretention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T07:29:41+00:00", "endpoint": "https://testuhyvu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 691200, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T07:29:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:45:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testuhyvu", + "name": "testuhyvu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-03-13T19:25:01+00:00", "endpoint": "https://webscoutscantarget.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-03-13T19:25:01+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-03-13T19:25:01+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/webscoutscantarget", + "name": "WebScoutScanTarget", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:21:32+00:00", "endpoint": "https://xuxu-sd-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:21:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-11T07:03:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-1", + "name": "xuxu-sd-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T21:37:20+00:00", "endpoint": "https://xuxu-sd-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T21:37:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T21:37:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-2", + "name": "xuxu-sd-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T21:41:29+00:00", "endpoint": "https://xuxu-sd-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T21:41:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T21:42:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-3", + "name": "xuxu-sd-3", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZDdSsQwEIXfJYhXpmm7W4OFRYoIXlgEu971Jj%2bzNdQmYZIuxdJ3N%2f6AvoKXc%2bacGb6zEgtLfDR2DKReyX3THV86UpPXGH2oGZuEFQNMYGMm3meETLmJhVkGhcZH42xgnOtKyPyactCa7gEUlQpuaFWqopC8knLHmUd3NhowsNYodMGdYtZ4f%2bfsyQwzis9TTP2duugQwq3whp5TLu0PZV7uaXqUF5cXYTT%2b6Eawh2VeZho03ZHt6pfmyT64N52YkihwaoYBYRAR9FcoETbPLfn2twJHwCSt%2fU8BPan7f1lBTzayfQA%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '22507' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:18:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 619e285a-29f6-4ee8-9339-cff3fce9fad8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 7B4DCB0D80C94FB5AB2FFF63E91B1AFD Ref B: MAA201060513019 Ref C: 2025-08-15T03:18:39Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label --prefix + -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZDdSsQwEIXfJYhXpmm7W4OFRYoIXlgEu971Jj%2BzNdQmYZIuxdJ3N/6AvoKXc%2BacGb6zEgtLfDR2DKReyX3THV86UpPXGH2oGZuEFQNMYGMm3meETLmJhVkGhcZH42xgnOtKyPyactCa7gEUlQpuaFWqopC8knLHmUd3NhowsNYodMGdYtZ4f%2BfsyQwzis9TTP2duugQwq3whp5TLu0PZV7uaXqUF5cXYTT%2B6Eawh2VeZho03ZHt6pfmyT64N52YkihwaoYBYRAR9FcoETbPLfn2twJHwCSt/U8BPan7f1lBTzayfQA%3D + response: + body: + string: '{"value": []}' + headers: + cache-control: + - no-cache + content-length: + - '13' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:18:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - fb02c37c-8289-43df-88a7-0f95cdb740b1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 34B694F8D74E4B02941246050FAD511C Ref B: MAA201060514035 Ref C: 2025-08-15T03:18:42Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label --prefix + -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01 + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-06-26T18:04:42+00:00", "endpoint": "https://abc12332112.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-06-26T18:04:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-28T11:10:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/abc12332112", + "name": "abc12332112", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T17:30:35+00:00", "endpoint": "https://albertofori-notification-wcus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-10T17:30:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-10T18:29:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-wcus", + "name": "albertofori-notification-wcus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/spring-id-test": + {"principalId": "bbc27095-cfb5-4239-b4f1-b94dc4f76a33", "clientId": "b281689e-4907-4519-a49d-345edbc61f9e"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-06-13T17:35:52+00:00", + "endpoint": "https://mametcal-app-config.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": 604800, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "free"}, "systemData": {"createdBy": null, "createdByType": + null, "createdAt": "2019-06-13T17:35:52+00:00", "lastModifiedBy": "test@example.com", + "lastModifiedByType": "User", "lastModifiedAt": "2024-12-30T21:03:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/mametcal-app-config", + "name": "mametcal-app-config", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-08-06T20:23:35+00:00", "endpoint": "https://secondsource.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-08-06T20:23:35+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-01-31T22:47:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/secondsource", + "name": "SecondSource", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "identity": {"type": "SystemAssigned", "userAssignedIdentities": + {}, "principalId": "72bee6eb-3e9f-41e8-a903-8d7d2b988b1c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-01-06T17:54:47+00:00", + "endpoint": "https://avgupta-appc-cus.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://keyvault-importexport.vault.azure.net/keys/TestCMK", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-01-06T17:54:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-08T13:30:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-cus", + "name": "avgupta-appc-cus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-02-12T21:35:04+00:00", "endpoint": "https://eventgridteststonexuxu1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-12T21:35:04+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-12T21:35:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/eventgridteststonexuxu1", + "name": "EventGridTestStoneXuxu1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-05-31T18:07:37+00:00", "endpoint": "https://jimmyca-cus-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-05-31T18:07:37+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2022-10-13T16:53:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cus-appconfig", + "name": "jimmyca-cus-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-12T08:13:43+00:00", "endpoint": "https://0000-junbchen-pe-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/0000-junbchen-pe-test/privateEndpointConnections/0000-junbchen-pe", + "name": "0000-junbchen-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/0000-junbchen-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-12T08:13:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-12T08:34:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/0000-junbchen-pe-test", + "name": "0000-junbchen-pe-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-25T22:56:46+00:00", "endpoint": "https://albertofori-dataproxy-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Enabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-25T22:56:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T01:00:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-dataproxy-test", + "name": "albertofori-dataproxy-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-08-10T22:30:45+00:00", "endpoint": "https://albertofori-free-test1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-08-10T22:30:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-10T02:00:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-free-test1", + "name": "albertofori-free-test1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T18:47:12+00:00", "endpoint": "https://albertofori-sas-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T18:47:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-05T23:32:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sas-test", + "name": "albertofori-sas-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:26:11+00:00", "endpoint": "https://albertofori-sku-test-free.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-28T07:26:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T09:41:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free", + "name": "albertofori-sku-test-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:27:05+00:00", "endpoint": "https://albertofori-sku-test-free2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2023-11-28T07:27:05+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-11-28T07:27:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free2", + "name": "albertofori-sku-test-free2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:29:16+00:00", "endpoint": "https://albertofori-sku-test-free3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2023-11-28T07:29:16+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-11-28T07:29:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free3", + "name": "albertofori-sku-test-free3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-10T09:30:13+00:00", "endpoint": "https://albertofori-test-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-10T09:30:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-12T18:51:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-test", + "name": "albertofori-test-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-23T18:52:42+00:00", "endpoint": "https://albertoforitestanino.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-23T18:52:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-23T18:52:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforitestanino", + "name": "albertoforitestanino", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-01-06T23:44:03+00:00", "endpoint": "https://appconfig-spring-sample.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-01-06T23:44:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-01-06T23:44:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfig-spring-sample", + "name": "appconfig-spring-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "e656642d-deb0-4d1a-abc0-d8e85268cecf", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-19T02:05:10+00:00", + "endpoint": "https://appconfigaitzstf3sdnjs.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2332800, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": null, + "createdByType": null, "createdAt": "2024-11-19T02:05:10+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-05T19:12:11+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/appconfigaitzstf3sdnjs", + "name": "appconfigaitzstf3sdnjs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-07T19:32:28+00:00", "endpoint": "https://appconfigdemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-07T19:32:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-07T19:32:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigdemo", + "name": "AppConfigDemo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:47:53+00:00", "endpoint": "https://appconfigstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:47:53+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-01T09:39:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigstore", + "name": "AppConfigStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-07T19:09:14+00:00", "endpoint": "https://appconfigteststorexuxu1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-07T19:09:14+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-07T19:09:14+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/appconfigteststorexuxu1", + "name": "AppConfigTestStoreXuxu1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:47:27+00:00", "endpoint": "https://appconfigurationstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:47:27+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-01T09:43:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigurationstore", + "name": "AppConfigurationStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "765e8797-defc-4cbc-987a-72eb3dc71d5c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-01-04T00:25:57+00:00", + "endpoint": "https://avgupta-appc-wus.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-01-04T00:25:57+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-01-05T00:33:42+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus", + "name": "avgupta-appc-wus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T18:18:09+00:00", "endpoint": "https://avgupta-appc-wus-free.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2024-10-23T18:18:09+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-10-23T18:18:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus-free", + "name": "avgupta-appc-wus-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-05-18T20:18:01+00:00", "endpoint": "https://avgupta-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-05-18T20:18:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-01T17:37:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appconfig", + "name": "avgupta-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-10-03T16:36:18+00:00", "endpoint": "https://avgupta-ru-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-03T16:36:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-10-03T16:36:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-ru-test", + "name": "avgupta-ru-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2018-11-30T04:05:08+00:00", "endpoint": "https://configbuilderdemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2018-11-30T04:05:08+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-01T04:54:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigloadtestrg/providers/Microsoft.AppConfiguration/configurationStores/configbuilderdemo", + "name": "ConfigBuilderDemo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-09-23T17:46:44+00:00", "endpoint": "https://configprovider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 864000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2020-09-23T17:46:44+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-08-07T16:42:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-configprovider-rg/providers/Microsoft.AppConfiguration/configurationStores/configprovider", + "name": "configprovider", "tags": {"tagcli": "valcli", "tag-portal": "val-portal"}}, + {"type": "Microsoft.AppConfiguration/configurationStores", "location": "westus", + "properties": {"provisioningState": "Succeeded", "creationDate": "2021-10-05T20:53:37+00:00", + "endpoint": "https://configprovider-free.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": 604800, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "free"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2021-10-05T20:53:37+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-03-04T19:11:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-configprovider-rg/providers/Microsoft.AppConfiguration/configurationStores/configprovider-free", + "name": "configprovider-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2019-02-25T18:52:34+00:00", "endpoint": "https://configstoredemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-02-25T18:52:34+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-21T23:58:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azcfg-demo/providers/Microsoft.AppConfiguration/configurationStores/configstoredemo", + "name": "ConfigStoreDemo", "tags": {"Owner": "Zhenlan"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-12-01T10:43:03+00:00", + "endpoint": "https://cwanjauteststore.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", "identityClientId": + "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": null, + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-12-01T10:43:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:35:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjauteststore", + "name": "cwanjauTestStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-17T18:06:57+00:00", "endpoint": "https://demos.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": [], "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-17T18:06:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-04T21:25:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/demos", + "name": "demos", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-01-08T21:18:22+00:00", "endpoint": "https://dotnetprovider-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-01-08T21:18:22+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-01-08T21:18:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/dotnetprovider-test", + "name": "dotnetprovider-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:43:44+00:00", "endpoint": "https://example.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:43:44+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-06T16:56:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/example", + "name": "example", "tags": {"222": "222", "test": "123"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-12T08:30:46+00:00", "endpoint": "https://garywang-create.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-12T08:30:46+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-12T08:30:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-create", + "name": "garywang-create", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2018-08-21T07:04:28+00:00", "endpoint": "https://garywang-demo-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2018-08-21T07:04:28+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2018-11-13T21:18:47+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-demo-store", + "name": "garywang-demo-store", "tags": {"123": "456", "789": "000"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "westus", "identity": + {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jimmyca-wus/providers/microsoft.managedidentity/userassignedidentities/jimmyca-mi-4": + {"principalId": "949c3968-a2e3-4bdc-b9fe-920f4d5a183f", "clientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, + "principalId": "763db0ea-df44-4d4c-ac02-c8e5f44b126a", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-02-20T19:44:43+00:00", + "endpoint": "https://jimmyca-wus-appconfig.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jimmyca-demo.vault.azure.net/keys/jimmyca-demo-key", + "identityClientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-02-20T19:44:43+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-03-27T22:06:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-wus-appconfig", + "name": "jimmyca-wus-appconfig", "tags": {"abc": "def", "ghi": "jkl"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "westus", "identity": + {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, + "principalId": "d92f5b75-4c8c-458f-a50a-7d2b587bec2b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-04-07T23:44:00+00:00", + "endpoint": "https://jiyu-createtest6.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + null}}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-07T23:44:00+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T23:14:41+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-createtest6", + "name": "jiyu-createtest6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-17T19:32:40+00:00", "endpoint": "https://jiyu-devsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-17T19:32:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-21T17:59:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-devsku", + "name": "jiyu-devsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jiyu/providers/microsoft.managedidentity/userassignedidentities/jiyu-useridentity-1": + {"principalId": "634a239c-d987-4892-83a4-5a4c987e3606", "clientId": "2e0d90a5-7909-4831-8508-31cbc111cb52"}}, + "principalId": "25fe3433-a7bd-4643-add3-d4f5ccfc68ea", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-11-07T18:45:10+00:00", + "endpoint": "https://jiyu-store.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "publicNetworkAccess": "Enabled", + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-11-07T18:45:10+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-21T21:53:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-store", + "name": "JIYU-stORE", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-01T18:44:56+00:00", "endpoint": "https://jiyu-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-01T18:44:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-01T18:44:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test", + "name": "jiyu-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-08T22:49:58+00:00", "endpoint": "https://jiyu-test-create.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-08T22:49:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-08T22:49:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test-create", + "name": "jiyu-test-create", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-03T00:48:41+00:00", "endpoint": "https://jiyu-test1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-03T00:48:41+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-08-06T17:01:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test1", + "name": "jiyu-test1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-14T17:14:39+00:00", "endpoint": "https://jiyu-testcreate.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-14T17:14:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-21T21:52:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-testcreate", + "name": "jiyu-testcreate", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "None", "userAssignedIdentities": + {}}, "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-14T19:22:00+00:00", + "endpoint": "https://jiyu-testresource.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://henlitestcmk.vault.azure.net/keys/henlicmk", "identityClientId": + "0147171d-f0b9-4c5a-ae56-c2bc638e073b"}}, "privateEndpointConnections": null, + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-14T19:22:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-14T19:22:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-testresource", + "name": "jiyu-testresource", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "da9f840f-a366-4525-ae77-7142a794cf49", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-03-16T23:19:49+00:00", + "endpoint": "https://jiyu-teststore.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-16T23:19:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-29T21:25:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore", + "name": "jiyu-teststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-05T19:32:08+00:00", "endpoint": "https://jiyu-wusstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-wusstore/privateEndpointConnections/jiyupetest_756dffb7-fc14-48e7-a7de-d4c8a36bb01d", + "name": "jiyupetest_756dffb7-fc14-48e7-a7de-d4c8a36bb01d", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyupetest"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Enabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-05T19:32:08+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-04-11T21:44:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-wusstore", + "name": "jiyu-wusstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-11-18T20:34:11+00:00", "endpoint": "https://jlinares-wus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-18T20:34:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-11-18T20:34:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-wus", + "name": "jlinares-wus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-10T07:33:47+00:00", "endpoint": "https://junbchen-rbac-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-10T07:33:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-10T07:33:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchen-rbac-test", + "name": "junbchen-rbac-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-02-10T11:56:31+00:00", "endpoint": "https://junbchenconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-02-10T11:56:31+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-03-20T06:09:56+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig", + "name": "junbchenConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.ManagedIdentity/userAssignedIdentities/junbchen-identity-cmk": + {"principalId": "e790947e-9f1d-4382-af0f-eec738f38956", "clientId": "43310a7e-10ee-4a8d-95d5-512587f292b9"}}, + "principalId": "8ad03e71-e705-4886-b115-6e91de3e349f", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-09-21T07:06:42+00:00", + "endpoint": "https://junbchenconfig-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-test/privateEndpointConnections/junbchen-my-pe", + "name": "junbchen-my-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/junbchen-my-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-21T07:06:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-08T02:57:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-test", + "name": "junbchenconfig-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-23T01:44:20+00:00", "endpoint": "https://notification-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-23T01:44:20+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2021-05-24T20:06:29+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/notification-test", + "name": "notification-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-12-01T23:02:40+00:00", "endpoint": "https://replicatest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-12-01T23:02:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T23:13:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/replicatest", + "name": "replicatest", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:46:09+00:00", "endpoint": "https://sample.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:46:09+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-25T18:46:09+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/sample", + "name": "sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-02-14T05:17:40+00:00", "endpoint": "https://scrum.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-02-14T05:17:40+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-02-14T05:17:40+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/scrum", + "name": "scrum", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-16T23:42:04+00:00", "endpoint": "https://sync-integration-source.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-16T23:42:04+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-16T23:42:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-source", + "name": "sync-integration-source", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-16T23:43:37+00:00", "endpoint": "https://sync-integration-target.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-16T23:43:37+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-16T23:43:37+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-target", + "name": "sync-integration-target", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-03-05T00:57:52+00:00", "endpoint": "https://teststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2021-03-05T00:57:52+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-05-10T06:06:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vendorteamtestrg/providers/Microsoft.AppConfiguration/configurationStores/teststore1", + "name": "TestStore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-10T18:34:03+00:00", "endpoint": "https://tolani-manifest-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-10T18:34:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-10T18:34:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-manifest-test", + "name": "tolani-manifest-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-23T20:30:55+00:00", "endpoint": "https://xuxu-dev-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-23T20:30:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-23T20:30:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-dev-test", + "name": "xuxu-dev-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T23:20:19+00:00", "endpoint": "https://xuxu-softdelete-2025-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T23:20:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-01T05:59:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-softdelete-2025-3", + "name": "xuxu-softdelete-2025-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-22T21:58:58+00:00", "endpoint": "https://xuxutest2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-22T21:58:58+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-09-01T00:01:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxutest2", + "name": "xuxutest2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-01-23T22:43:48+00:00", "endpoint": "https://xuxuteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-01-23T22:43:48+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-01-23T22:43:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuteststore", + "name": "xuxuteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T12:14:02+00:00", "endpoint": "https://202503071050aadstorelbub34eijpr7lode.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:14:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:14:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050aadstorelbub34eijpr7lode", + "name": "202503071050AADStorelbub34eijpr7lode", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:05+00:00", "endpoint": "https://202503071050aadstoretvbz6bjfgcrueuj7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050aadstoretvbz6bjfgcrueuj7", + "name": "202503071050AADStoretvbz6bjfgcrueuj7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050featurefiltertestz3tajzl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050featurefiltertestz3tajzl", + "name": "202503071050FeatureFilterTestz3tajzl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050featuretestbis7h3hf75vhu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050featuretestbis7h3hf75vhu", + "name": "202503071050FeatureTestbis7h3hf75vhu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050kvsetimporttestj7dxbos4t.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvsetimporttestj7dxbos4t", + "name": "202503071050KVSetImportTestj7dxbos4t", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050kvtestex2pahcgf6zf6ichhh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvtestex2pahcgf6zf6ichhh", + "name": "202503071050KVTestex2pahcgf6zf6ichhh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:43+00:00", "endpoint": "https://202503071050kvtestpwhanchjfarusoc6hx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvtestpwhanchjfarusoc6hx", + "name": "202503071050KVTestpwhanchjfarusoc6hx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:05+00:00", "endpoint": "https://202503071050source4jumespglx52uvwv73.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050source4jumespglx52uvwv73", + "name": "202503071050Source4jumespglx52uvwv73", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050strictimporttestiabfkuyi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050strictimporttestiabfkuyi", + "name": "202503071050StrictImportTestiabfkuyi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-18T18:36:58+00:00", "endpoint": "https://aacpreviewcddklrzrcr43y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-18T18:36:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-25T17:47:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev3/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewcddklrzrcr43y", + "name": "aacpreviewcddklrzrcr43y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-17T22:34:27+00:00", "endpoint": "https://aacpreviewglh3yhyjvuqx4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-17T22:34:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-17T23:24:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewglh3yhyjvuqx4", + "name": "aacpreviewglh3yhyjvuqx4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-29T18:27:34+00:00", "endpoint": "https://aacpreviewnbuq7mn7uftpu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T18:27:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-30T19:33:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-ai-chat-test/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewnbuq7mn7uftpu", + "name": "aacpreviewnbuq7mn7uftpu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-17T23:42:05+00:00", "endpoint": "https://aacpreviewog5i35jytnwqe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-17T23:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-17T23:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev2/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewog5i35jytnwqe", + "name": "aacpreviewog5i35jytnwqe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-22T18:12:58+00:00", "endpoint": "https://aacpreviewpem2i2yi7hhce.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-22T18:12:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-22T18:12:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-ross-azd-temp/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewpem2i2yi7hhce", + "name": "aacpreviewpem2i2yi7hhce", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d2fc891a-1990-40bd-87e5-89583d8603f0", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-03-21T04:28:43+00:00", + "endpoint": "https://aactest4156.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-03-21T04:28:43+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-06-25T21:39:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_test2/providers/Microsoft.AppConfiguration/configurationStores/aactest4156", + "name": "AACtest4156", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:48:19+00:00", "endpoint": "https://aadstore2fdc6wfxygy2nnb3gw6ckd2sermi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:48:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:48:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2fdc6wfxygy2nnb3gw6ckd2sermi", + "name": "AADStore2fdc6wfxygy2nnb3gw6ckd2sermi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://aadstore2j23nxok6pn5otve.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2j23nxok6pn5otve", + "name": "AADStore2j23nxok6pn5otve", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:25:20+00:00", "endpoint": "https://aadstore2kisbgqpo525kjduvfqihqnsx4nt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:25:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:25:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2kisbgqpo525kjduvfqihqnsx4nt", + "name": "AADStore2kisbgqpo525kjduvfqihqnsx4nt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:29+00:00", "endpoint": "https://aadstore3dce6d55zqgbwack.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore3dce6d55zqgbwack", + "name": "AADStore3dce6d55zqgbwack", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:28+00:00", "endpoint": "https://aadstore6nr3kgh7g33qxwbb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore6nr3kgh7g33qxwbb", + "name": "AADStore6nr3kgh7g33qxwbb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://aadstoreaantdclm5gpqei2hhdf6cva3sljt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreaantdclm5gpqei2hhdf6cva3sljt", + "name": "AADStoreaantdclm5gpqei2hhdf6cva3sljt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T21:46:30+00:00", "endpoint": "https://aadstorec4ol3cqh5zpjr6h26tze7vmjpw3z.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "b82302a5-ce22-429d-b5af-a8969e61ef42", "createdByType": + "Application", "createdAt": "2025-03-18T21:46:30+00:00", "lastModifiedBy": + "b82302a5-ce22-429d-b5af-a8969e61ef42", "lastModifiedByType": "Application", + "lastModifiedAt": "2025-03-18T21:46:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/aadstorec4ol3cqh5zpjr6h26tze7vmjpw3z", + "name": "AADStorec4ol3cqh5zpjr6h26tze7vmjpw3z", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://aadstored4eq4jf2dxb7w6q2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstored4eq4jf2dxb7w6q2", + "name": "AADStored4eq4jf2dxb7w6q2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:54:21+00:00", "endpoint": "https://aadstoredngl3p3poqiv3afvsecphzi7awkv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:54:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:54:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoredngl3p3poqiv3afvsecphzi7awkv", + "name": "AADStoredngl3p3poqiv3afvsecphzi7awkv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://aadstoreehsptlkv33yb6ypf4u6ro2zjzoma.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreehsptlkv33yb6ypf4u6ro2zjzoma", + "name": "AADStoreehsptlkv33yb6ypf4u6ro2zjzoma", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://aadstoreemoarcatx4ig55bf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreemoarcatx4ig55bf", + "name": "AADStoreemoarcatx4ig55bf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:01:10+00:00", "endpoint": "https://aadstorefa47dzf4yc7jajleqyj3fsy5z2ne.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:01:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:01:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefa47dzf4yc7jajleqyj3fsy5z2ne", + "name": "AADStorefa47dzf4yc7jajleqyj3fsy5z2ne", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:07:12+00:00", "endpoint": "https://aadstorefekzsb2x5ovlq42cl4fjprdjcqck.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:07:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:07:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefekzsb2x5ovlq42cl4fjprdjcqck", + "name": "AADStorefekzsb2x5ovlq42cl4fjprdjcqck", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:48:19+00:00", "endpoint": "https://aadstorefj4psmfliidhcij2l53aht4reart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:48:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:48:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefj4psmfliidhcij2l53aht4reart", + "name": "AADStorefj4psmfliidhcij2l53aht4reart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:00+00:00", "endpoint": "https://aadstorefj5yfl63sm2uy46h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefj5yfl63sm2uy46h", + "name": "AADStorefj5yfl63sm2uy46h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T18:39:35+00:00", "endpoint": "https://aadstorehztciysy7xk4ewqzycdsq4incxbl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T18:39:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T18:39:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorehztciysy7xk4ewqzycdsq4incxbl", + "name": "AADStorehztciysy7xk4ewqzycdsq4incxbl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:30:23+00:00", "endpoint": "https://aadstorej6ldt2p4jl4arinnyk6m56v7yxob.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:30:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:30:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorej6ldt2p4jl4arinnyk6m56v7yxob", + "name": "AADStorej6ldt2p4jl4arinnyk6m56v7yxob", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://aadstorelyj2p6zwhasozckb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorelyj2p6zwhasozckb", + "name": "AADStorelyj2p6zwhasozckb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:09+00:00", "endpoint": "https://aadstoremaufp2otrctetauz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoremaufp2otrctetauz", + "name": "AADStoremaufp2otrctetauz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:53:43+00:00", "endpoint": "https://aadstoremqvpy6y6ngbns2zenvqysrzsl3ul.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:53:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:53:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoremqvpy6y6ngbns2zenvqysrzsl3ul", + "name": "AADStoremqvpy6y6ngbns2zenvqysrzsl3ul", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T21:34:01+00:00", "endpoint": "https://aadstoreoi34pez3z4quweid45aemfftd6q5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "0c2e9572-c9a5-4312-87ca-e25e62ce1775", "createdByType": + "Application", "createdAt": "2025-03-18T21:34:01+00:00", "lastModifiedBy": + "0c2e9572-c9a5-4312-87ca-e25e62ce1775", "lastModifiedByType": "Application", + "lastModifiedAt": "2025-03-18T21:34:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/aadstoreoi34pez3z4quweid45aemfftd6q5", + "name": "AADStoreoi34pez3z4quweid45aemfftd6q5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:21:34+00:00", "endpoint": "https://aadstoreptvgrkgrh5qdndt42qsprw5rm6ly.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:21:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:21:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreptvgrkgrh5qdndt42qsprw5rm6ly", + "name": "AADStoreptvgrkgrh5qdndt42qsprw5rm6ly", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:33:36+00:00", "endpoint": "https://aadstorer6gudmc32peoau6hb3bf5vvyj3q2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:33:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:33:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorer6gudmc32peoau6hb3bf5vvyj3q2", + "name": "AADStorer6gudmc32peoau6hb3bf5vvyj3q2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:29:39+00:00", "endpoint": "https://aadstoresadnweyx5hskkifsx7tfsv4ptwqe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:29:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:29:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoresadnweyx5hskkifsx7tfsv4ptwqe", + "name": "AADStoresadnweyx5hskkifsx7tfsv4ptwqe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T18:46:41+00:00", "endpoint": "https://aadstorestvj77kkmdknc2sv7xibljl7433p.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T18:46:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T18:46:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorestvj77kkmdknc2sv7xibljl7433p", + "name": "AADStorestvj77kkmdknc2sv7xibljl7433p", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://aadstoreu4qbgzyfxdmy6lpd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreu4qbgzyfxdmy6lpd", + "name": "AADStoreu4qbgzyfxdmy6lpd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:16+00:00", "endpoint": "https://aadstoreuje4evizirs5a6342bspybsecsib.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreuje4evizirs5a6342bspybsecsib", + "name": "AADStoreuje4evizirs5a6342bspybsecsib", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:11:12+00:00", "endpoint": "https://aadstorevgd2tlbh6eykb7dx2loyzn4xajr3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:11:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:11:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorevgd2tlbh6eykb7dx2loyzn4xajr3", + "name": "AADStorevgd2tlbh6eykb7dx2loyzn4xajr3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:33:12+00:00", "endpoint": "https://aadstorevqztvqfq25dqbpjndilalipnl6tw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:33:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:33:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorevqztvqfq25dqbpjndilalipnl6tw", + "name": "AADStorevqztvqfq25dqbpjndilalipnl6tw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:51:34+00:00", "endpoint": "https://aadstorexqwgsfnuryxk6a52ashu2z6bst3d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:51:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:51:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorexqwgsfnuryxk6a52ashu2z6bst3d", + "name": "AADStorexqwgsfnuryxk6a52ashu2z6bst3d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://aadstorexxspwhf6yblpkshfi46zb4h76jmw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorexxspwhf6yblpkshfi46zb4h76jmw", + "name": "AADStorexxspwhf6yblpkshfi46zb4h76jmw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://aadstoreyfhynglzfhp6ouko.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreyfhynglzfhp6ouko", + "name": "AADStoreyfhynglzfhp6ouko", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:58:27+00:00", "endpoint": "https://aadstorez47z44qmkfeoffaj7p6jyuljr5du.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:58:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:58:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorez47z44qmkfeoffaj7p6jyuljr5du", + "name": "AADStorez47z44qmkfeoffaj7p6jyuljr5du", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-27T11:12:24+00:00", "endpoint": "https://aadtestbphpp6jw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-27T11:12:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-27T11:12:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaqtmt4okxwxkkeqxxixbg26vnobwquumjo2cgvejdroji56rwqdvwasvnebr3xya4/providers/Microsoft.AppConfiguration/configurationStores/aadtestbphpp6jw", + "name": "AadTestbphpp6jw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:52:15+00:00", "endpoint": "https://aadtestfz2vwxiz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:52:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:52:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf32tkfpn6fob3yu73dinjh76shlmvspc3vvnde72phco2oohx5x5zypldebnx5ra2/providers/Microsoft.AppConfiguration/configurationStores/aadtestfz2vwxiz", + "name": "AadTestfz2vwxiz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:42+00:00", "endpoint": "https://aadtestyu6jk3pc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqos4tjbhhejcb656qv6thmesokhiwxsl2lxiwepvzuphcjifnzbefcz2naw2t3dni/providers/Microsoft.AppConfiguration/configurationStores/aadtestyu6jk3pc", + "name": "AadTestyu6jk3pc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:56:22+00:00", "endpoint": "https://aadtestzyc5ivjm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:56:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:56:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjtmgpqlhvdaxivlgfit35z6eugeihochof5nogetvgk7qmljxwhy6mwuks46fy2ev/providers/Microsoft.AppConfiguration/configurationStores/aadtestzyc5ivjm", + "name": "AadTestzyc5ivjm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-29T16:29:13+00:00", "endpoint": "https://ai-chatapp-demo-mametcal.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T16:29:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-29T17:28:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai-chatapp-demo-mametcal/providers/Microsoft.AppConfiguration/configurationStores/ai-chatapp-demo-mametcal", + "name": "AI-ChatApp-Demo-mametcal", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "dfb4ad91-368f-4de1-8101-c7919fd25c5e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-01-23T23:21:07+00:00", + "endpoint": "https://albertofori-ff-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-23T23:21:07+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-02T17:52:47+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-ff-test", + "name": "albertofori-ff-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-17T23:38:28+00:00", "endpoint": "https://albertofori-import-export-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-06-17T23:38:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-26T17:22:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-import-export-test", + "name": "albertofori-import-export-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-26T13:03:30+00:00", "endpoint": "https://albertofori-python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-26T13:03:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-27T17:06:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-python-provider", + "name": "albertofori-python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-12T21:52:32+00:00", "endpoint": "https://albertofori-snapshot-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-12T21:52:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-21T19:32:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-snapshot-demo", + "name": "albertofori-snapshot-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/albertofori-managed-id": + {"principalId": "6a8e5046-50d3-480d-9ca3-94f61a51f8e3", "clientId": "b82302a5-ce22-429d-b5af-a8969e61ef42"}}, + "principalId": "c27e254a-eed2-4326-a0c8-3082898bac95", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-01T17:00:28+00:00", + "endpoint": "https://albertofori-test-config.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Enabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-04-01T17:00:28+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-10-30T18:14:28+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-config", + "name": "albertofori-test-config", "tags": {"this": "is a new tag"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastus", "identity": + {"type": "SystemAssigned", "principalId": "627b96a5-156b-4334-b427-a97f73c44247", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2022-08-11T17:30:03+00:00", "endpoint": "https://albertofori-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 259200, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T17:30:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-11T21:19:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-store", + "name": "albertofori-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c05dd707-b8e5-4147-84e3-b09e2bf280ed", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-19T03:41:20+00:00", + "endpoint": "https://appconfig-zhiyuanliang.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-02-19T03:41:20+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-30T12:24:20+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyuanliang-dev/providers/Microsoft.AppConfiguration/configurationStores/appconfig-zhiyuanliang", + "name": "appconfig-zhiyuanliang", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-18T22:27:36+00:00", "endpoint": "https://appconfigkube.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-18T22:27:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-18T22:27:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mvp_demo/providers/Microsoft.AppConfiguration/configurationStores/appconfigkube", + "name": "appConfigKube", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-09T08:25:44+00:00", + "endpoint": "https://appconfigurationstore1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", "identityClientId": + "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": null, + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 86400, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-09T08:25:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-25T07:59:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/appconfigurationstore1", + "name": "appconfigurationstore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-10T15:50:07+00:00", "endpoint": "https://appconfigw4swdcadfzqb6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-10T15:50:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T17:04:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/appconfigw4swdcadfzqb6", + "name": "appconfigw4swdcadfzqb6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-10-16T18:36:25+00:00", "endpoint": "https://avgupta-appc-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-16T18:36:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-23T19:57:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus", + "name": "avgupta-appc-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-06T17:34:04+00:00", "endpoint": "https://avgupta-appc-eus-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-06T17:34:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-06T17:34:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus-test2", + "name": "avgupta-appc-eus-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:57:29+00:00", "endpoint": "https://bothschematest2ajsnm4m4m.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:57:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:57:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematest2ajsnm4m4m", + "name": "BothSchemaTest2ajsnm4m4m", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T20:04:20+00:00", "endpoint": "https://bothschematestazrlxgv5apnvcwi5dgvsoj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T20:04:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T20:04:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestazrlxgv5apnvcwi5dgvsoj", + "name": "BothSchemaTestazrlxgv5apnvcwi5dgvsoj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:51+00:00", "endpoint": "https://bothschematestdxcevakc6u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestdxcevakc6u", + "name": "BothSchemaTestdxcevakc6u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:07:29+00:00", "endpoint": "https://bothschematestfxm4zemppk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:07:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:07:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestfxm4zemppk", + "name": "BothSchemaTestfxm4zemppk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-29T00:38:15+00:00", "endpoint": "https://cdntestinghtkswxoxu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2025-05-29T00:38:15+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-29T00:42:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/cdntestinghtkswxoxu", + "name": "cdntestinghtkswxoxu", "tags": {"demo": "cdn-cache-busting"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastus", "properties": + {"provisioningState": "Succeeded", "creationDate": "2024-12-06T08:13:55+00:00", + "endpoint": "https://chenshi-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-12-06T08:13:55+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-12-06T08:13:55+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chenshi-empty/providers/Microsoft.AppConfiguration/configurationStores/chenshi-test", + "name": "chenshi-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-31T04:09:21+00:00", "endpoint": "https://credentialtestghlwa5dymj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-31T04:09:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-31T04:09:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmduhbiqbiiegesiuewzdwlvnh6wrdgdsbti6tgxzjzeittnnlqwu4or5gzhqmjzcp/providers/Microsoft.AppConfiguration/configurationStores/credentialtestghlwa5dymj", + "name": "CredentialTestghlwa5dymj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://credentialtestrvdev7icfu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkhjgepteg6uxberos6x5tz6bbxjgjliagmxzgu2iehb5me5yqmle6shfkr43tgvue/providers/Microsoft.AppConfiguration/configurationStores/credentialtestrvdev7icfu", + "name": "CredentialTestrvdev7icfu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:00+00:00", "endpoint": "https://credentialtestvdwi2cve5c.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/credentialtestvdwi2cve5c", + "name": "CredentialTestvdwi2cve5c", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-08T10:32:41+00:00", "endpoint": "https://cwanjau-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-01-08T10:32:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-20T17:42:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-appconfig", + "name": "cwanjau-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T16:42:42+00:00", "endpoint": "https://cwanjau-data.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T16:42:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T16:42:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-data", + "name": "cwanjau-data", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-24T15:05:46+00:00", "endpoint": "https://cwanjauconfig.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", + "identityClientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-24T15:05:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-06T08:22:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjauconfig", + "name": "cwanjauConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-05T17:31:19+00:00", "endpoint": "https://cwanjautestpremiumsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-05T17:31:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-18T09:00:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjautestpremiumsku", + "name": "cwanjautestpremiumsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:58+00:00", "endpoint": "https://destination624bxoocjr2fi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwyttwmni2xmbsaxrtp64sja6rdh2ocxcprrc5pwdogqijazx7f4vhljo5qfanoryn/providers/Microsoft.AppConfiguration/configurationStores/destination624bxoocjr2fi", + "name": "Destination624bxoocjr2fi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:21+00:00", "endpoint": "https://destinationaoj4n5rlqmypa.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:50:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:50:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationaoj4n5rlqmypa", + "name": "Destinationaoj4n5rlqmypa", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:53:04+00:00", "endpoint": "https://destinationaq6eqb6bwrydgaariika6z53n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:53:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:53:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationaq6eqb6bwrydgaariika6z53n", + "name": "Destinationaq6eqb6bwrydgaariika6z53n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:31+00:00", "endpoint": "https://destinationcplr7jafu2ya5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationcplr7jafu2ya5", + "name": "Destinationcplr7jafu2ya5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:34:19+00:00", "endpoint": "https://destinationibqoopqxlj6k6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:34:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:34:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationibqoopqxlj6k6", + "name": "Destinationibqoopqxlj6k6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:56+00:00", "endpoint": "https://destinationlxi67pwgjj57oguvmzwgkt2vf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationlxi67pwgjj57oguvmzwgkt2vf", + "name": "Destinationlxi67pwgjj57oguvmzwgkt2vf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:22+00:00", "endpoint": "https://destinationnqga6gaurejxxtvybkxnccztp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationnqga6gaurejxxtvybkxnccztp", + "name": "Destinationnqga6gaurejxxtvybkxnccztp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:52:14+00:00", "endpoint": "https://destinationoj2i2wxwar47i.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationoj2i2wxwar47i", + "name": "Destinationoj2i2wxwar47i", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:39:38+00:00", "endpoint": "https://destinationrzqf65ztf6tdr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:39:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:39:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationrzqf65ztf6tdr", + "name": "Destinationrzqf65ztf6tdr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:07:04+00:00", "endpoint": "https://destinationvzuqxfj74tquf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:07:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:07:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguznozpjynfgaebftsnnrdc52h2scgoorpr6unkhktfxrcwsulo6qvsxb6b6j2jkfn/providers/Microsoft.AppConfiguration/configurationStores/destinationvzuqxfj74tquf", + "name": "Destinationvzuqxfj74tquf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:00:21+00:00", "endpoint": "https://destinationwjno7ctvxyjrl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:00:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:00:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationwjno7ctvxyjrl", + "name": "Destinationwjno7ctvxyjrl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:02+00:00", "endpoint": "https://destinationy75zwpupmogkjvsohc7ou4yxv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationy75zwpupmogkjvsohc7ou4yxv", + "name": "Destinationy75zwpupmogkjvsohc7ou4yxv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:37:44+00:00", "endpoint": "https://disablelocalauthfju7nz7v.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:37:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:38:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthfju7nz7v", + "name": "DisableLocalAuthfju7nz7v", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:58:33+00:00", "endpoint": "https://disablelocalauthhs4noupq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:58:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:59:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthhs4noupq", + "name": "DisableLocalAuthhs4noupq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:04+00:00", "endpoint": "https://disablelocalauthqaeotexuyh5meeg5l7xm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthqaeotexuyh5meeg5l7xm", + "name": "DisableLocalAuthqaeotexuyh5meeg5l7xm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:48:35+00:00", "endpoint": "https://disablelocalauthsejaovxn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:48:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:49:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthsejaovxn", + "name": "DisableLocalAuthsejaovxn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:39+00:00", "endpoint": "https://featurefiltertest4oe7rjo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest4oe7rjo", + "name": "FeatureFilterTest4oe7rjo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:41+00:00", "endpoint": "https://featurefiltertest4qffyn3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq3rajrlh5wrogzgbxi7z4mjxxcjgiie4yagnbmwn6wrksy52etjishk2wfygh6qc5/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest4qffyn3", + "name": "FeatureFilterTest4qffyn3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:49+00:00", "endpoint": "https://featurefiltertest5a5yxm3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest5a5yxm3", + "name": "FeatureFilterTest5a5yxm3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:06+00:00", "endpoint": "https://featurefiltertestak76alz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestak76alz", + "name": "FeatureFilterTestak76alz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:59+00:00", "endpoint": "https://featurefiltertestczvejyt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestczvejyt", + "name": "FeatureFilterTestczvejyt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:31+00:00", "endpoint": "https://featurefiltertestntvamlv3qsxhrqghqxt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestntvamlv3qsxhrqghqxt", + "name": "FeatureFilterTestntvamlv3qsxhrqghqxt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:08:03+00:00", "endpoint": "https://haiyiwen-weu-0716.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:08:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:08:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716", + "name": "haiyiwen-weu-0716", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:23:12+00:00", "endpoint": "https://haiyiwen-weu-0716-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:23:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:23:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-1", + "name": "haiyiwen-weu-0716-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:24:06+00:00", "endpoint": "https://haiyiwen-weu-0716-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:24:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:24:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-2", + "name": "haiyiwen-weu-0716-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:29:54+00:00", "endpoint": "https://haiyiwen-weu-0716-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:29:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:29:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-3", + "name": "haiyiwen-weu-0716-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:30:11+00:00", "endpoint": "https://haiyiwen-weu-0716-4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:30:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:30:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-4", + "name": "haiyiwen-weu-0716-4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:30:27+00:00", "endpoint": "https://haiyiwen-weu-0716-5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:30:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:30:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-5", + "name": "haiyiwen-weu-0716-5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:39:47+00:00", "endpoint": "https://haiyiwen-weu-0716-6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:39:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:39:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-6", + "name": "haiyiwen-weu-0716-6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-11T17:46:54+00:00", "endpoint": "https://jlinares-weu-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-11T17:46:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-11T17:46:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-weu-test", + "name": "jlinares-weu-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-11-20T20:44:09+00:00", "endpoint": "https://parameters.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-20T20:44:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-09T21:27:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/parameters", + "name": "parameters", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southeastasia", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-23T08:11:48+00:00", "endpoint": "https://appconfig-dova-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-23T08:11:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-23T08:11:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfig-dova/providers/Microsoft.AppConfiguration/configurationStores/appconfig-dova-store", + "name": "appconfig-dova-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-10-08T16:40:07+00:00", "endpoint": "https://australia-east-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-08T16:40:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-08T16:40:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/australia-east-test", + "name": "australia-east-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-10-21T20:31:31+00:00", "endpoint": "https://tolani-aue-aad-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-21T20:31:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-21T21:13:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-aue-aad-test", + "name": "tolani-aue-aad-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-05T20:33:25+00:00", "endpoint": "https://tolani-aue-test-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T20:33:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-05T20:33:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-aue-test-2", + "name": "tolani-aue-test-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "identity": {"type": "SystemAssigned", "principalId": + "5b4d94b7-a951-4698-805a-cfc91ee54f15", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-08-06T12:26:08+00:00", + "endpoint": "https://freestoreee.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-08-06T12:26:08+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-08-07T07:30:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestoreee", + "name": "freeStoreee", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-test": + {"principalId": "1a010275-1a70-4915-a017-b778836ea3b7", "clientId": "b60a60f9-e266-447b-a168-15af052f49a1"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-01-16T19:22:44+00:00", + "endpoint": "https://jiyu-neu.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-16T19:22:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-08T00:09:31+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-neu", + "name": "jiyu-neu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-18T16:15:26+00:00", "endpoint": "https://testupgradefree.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T16:15:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-20T17:38:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testupgradefree", + "name": "testupgradefree", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uksouth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-15T08:59:14+00:00", "endpoint": "https://cwanjau-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-15T08:59:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T07:24:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-pe", + "name": "cwanjau-PE", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uksouth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-22T22:32:16+00:00", "endpoint": "https://tolani-prod-uks-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-22T22:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-22T22:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-uks-1", + "name": "tolani-prod-uks-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/albertofori-managed-id": + {"principalId": "6a8e5046-50d3-480d-9ca3-94f61a51f8e3", "clientId": "b82302a5-ce22-429d-b5af-a8969e61ef42"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-01T22:41:59+00:00", + "endpoint": "https://albertofori-diff-import-export.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-01T22:41:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-11T21:32:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-diff-import-export", + "name": "albertofori-diff-import-export", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-20T20:26:27+00:00", "endpoint": "https://albertoforiteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-06-20T20:26:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-09T01:23:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforiteststore", + "name": "albertoforiteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T22:55:24+00:00", "endpoint": "https://avgupta-appc-eus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T22:55:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-07T23:58:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus2", + "name": "avgupta-appc-eus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-21T16:22:23+00:00", "endpoint": "https://haiyiwen-aiconfig-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-21T16:22:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-04T04:24:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-aiconfig-demo", + "name": "haiyiwen-aiconfig-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-06-05T18:10:41+00:00", + "endpoint": "https://haiyiwen-eus2-0605.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-05T18:10:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T20:57:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2-0605", + "name": "haiyiwen-eus2-0605", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-05T18:25:54+00:00", "endpoint": "https://haiyiwen-eus2-0605-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-05T18:25:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-05T18:25:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2-0605-1", + "name": "haiyiwen-eus2-0605-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-06T22:13:49+00:00", "endpoint": "https://jiyu-eus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-06T22:13:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-06T22:19:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus2", + "name": "jiyu-eus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-06T18:34:38+00:00", "endpoint": "https://portal-test-eu2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-06T18:34:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T17:29:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-eu2", + "name": "portal-test-eu2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-17T20:42:26+00:00", "endpoint": "https://portal-test-eu2-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-17T20:42:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-18T00:52:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-eu2-2", + "name": "portal-test-eu2-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-09T08:19:20+00:00", "endpoint": "https://test-experimentation.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-09T08:19:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-09T08:24:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/test-experimentation", + "name": "test-experimentation", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-15T17:26:16+00:00", "endpoint": "https://appconfig-mfpyttqk5gws.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-15T17:26:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-15T17:26:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfig-mfpyttqk5gws", + "name": "appconfig-mfpyttqk5gws", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "c45e9ed2-6e72-460a-82f9-6306b65fa956", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-03-02T02:42:51+00:00", + "endpoint": "https://appconfigtwo.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-03-02T02:42:51+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-03-03T20:14:50+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/appconfigtwo", + "name": "AppConfigTwo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T17:01:30+00:00", "endpoint": "https://appconfigwmsp7gt2w2iak.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-10-23T17:01:30+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-10-23T17:01:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/appconfigwmsp7gt2w2iak", + "name": "appconfigwmsp7gt2w2iak", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-10T02:44:51+00:00", "endpoint": "https://asdfasdfad.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-10T02:44:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-10T02:44:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/asdfasdfad", + "name": "asdfasdfad", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-25T17:28:57+00:00", "endpoint": "https://avgupta-appc-wus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-25T17:28:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-13T17:23:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus2", + "name": "avgupta-appc-wus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "4090f296-4b68-49d2-9250-9bcff07d821b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-11-22T19:29:17+00:00", + "endpoint": "https://avgupta-pe-appc.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-22T19:29:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T00:41:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc", + "name": "avgupta-pe-appc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T09:10:56+00:00", "endpoint": "https://configmapimporttest2uedl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T09:10:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T09:10:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest2uedl", + "name": "ConfigMapImportTest2uedl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T09:04:11+00:00", "endpoint": "https://configmapimporttest3nenl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T09:04:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T09:04:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest3nenl", + "name": "ConfigMapImportTest3nenl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-15T03:11:28+00:00", "endpoint": "https://configmapimporttest5eotn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-15T03:11:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-15T03:11:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest5eotn", + "name": "ConfigMapImportTest000002", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T08:22:05+00:00", "endpoint": "https://configmapimporttest7ugov.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T08:22:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T08:22:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest7ugov", + "name": "ConfigMapImportTest7ugov", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T14:47:55+00:00", "endpoint": "https://configmapimporttesteqacu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T14:47:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T14:47:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttesteqacu", + "name": "ConfigMapImportTesteqacu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T14:46:09+00:00", "endpoint": "https://configmapimporttestezsgo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T14:46:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T14:46:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestezsgo", + "name": "ConfigMapImportTestezsgo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-15T02:42:27+00:00", "endpoint": "https://configmapimporttestghpw2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-15T02:42:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-15T02:42:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestghpw2", + "name": "ConfigMapImportTestghpw2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T15:36:34+00:00", "endpoint": "https://configmapimporttestifrht.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T15:36:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T15:36:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestifrht", + "name": "ConfigMapImportTestifrht", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T07:13:43+00:00", "endpoint": "https://configmapimporttestiy6dj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T07:13:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T07:13:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestiy6dj", + "name": "ConfigMapImportTestiy6dj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T15:05:24+00:00", "endpoint": "https://configmapimporttestjiwd3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T15:05:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T15:05:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestjiwd3", + "name": "ConfigMapImportTestjiwd3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T09:45:34+00:00", "endpoint": "https://configmapimporttestjxp4j.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T09:45:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T09:45:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestjxp4j", + "name": "ConfigMapImportTestjxp4j", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T08:06:28+00:00", "endpoint": "https://configmapimporttests45es.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T08:06:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T08:06:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttests45es", + "name": "ConfigMapImportTests45es", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T07:38:51+00:00", "endpoint": "https://configmapimporttestubqzy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T07:38:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T07:38:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestubqzy", + "name": "ConfigMapImportTestubqzy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-30T00:09:38+00:00", "endpoint": "https://demombappconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-06-30T00:09:38+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-07-18T22:42:16+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/demombappconfig", + "name": "DemoMBAppConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-27T19:10:15+00:00", "endpoint": "https://fake-endpoint.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-27T19:10:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-27T19:11:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/fake-endpoint", + "name": "fake-endpoint", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-13T17:36:36+00:00", "endpoint": "https://highnumberffstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-13T17:36:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-13T17:36:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/highnumberffstore", + "name": "HighNumberFFStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-13T15:59:39+00:00", "endpoint": "https://importtestspring.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-13T15:59:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-13T15:59:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/importtestspring", + "name": "importtestspring", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-21T23:27:57+00:00", "endpoint": "https://java-export-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-21T23:27:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-21T23:27:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/java-export-test", + "name": "java-export-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-07-01T18:03:45+00:00", "endpoint": "https://jlinares-test-slw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-01T18:03:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-07-01T18:03:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-slw", + "name": "jlinares-test-slw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-04-07T23:28:48+00:00", "endpoint": "https://jlinares-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-07T23:28:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-07T23:28:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-store", + "name": "jlinares-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-25T17:10:07+00:00", "endpoint": "https://largekeyvaultstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-25T17:10:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-25T17:10:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/largekeyvaultstore", + "name": "LargeKeyVaultStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-22T18:40:42+00:00", "endpoint": "https://mb-test-template.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-22T18:40:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-22T18:40:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/mb-test-template", + "name": "mb-test-template", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-03-19T19:54:12+00:00", "endpoint": "https://nofeatureflagstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2020-03-19T19:54:12+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-03-19T19:54:12+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/nofeatureflagstore", + "name": "NoFeatureFlagStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-22T19:32:34+00:00", "endpoint": "https://noreplicatest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-22T19:32:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-22T19:32:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/noreplicatest", + "name": "noReplicaTest", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-26T22:52:06+00:00", "endpoint": "https://python-ai-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-26T22:52:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-26T22:52:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-azureaidemomametcal/providers/Microsoft.AppConfiguration/configurationStores/python-ai-test", + "name": "python-ai-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-22T17:53:31+00:00", "endpoint": "https://python-chatapp-example.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-22T17:53:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-25T23:18:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-chatapp-example", + "name": "Python-ChatApp-Example", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-13T18:28:47+00:00", "endpoint": "https://python-multi-source-ff.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-13T18:28:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-27T18:33:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-multi-source-ff", + "name": "python-multi-source-ff", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-01T16:51:09+00:00", "endpoint": "https://python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-01T16:51:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-25T17:52:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider", + "name": "python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-09T17:53:50+00:00", "endpoint": "https://python-provider-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-09T17:53:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-09T17:53:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider-demo", + "name": "python-provider-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-26T18:00:59+00:00", "endpoint": "https://python-provider-flask-sample.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-26T18:00:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-18T22:38:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider-flask-sample", + "name": "python-provider-flask-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-27T19:37:52+00:00", "endpoint": "https://python-provider-tests.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-27T19:37:52+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T21:30:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/python-provider-tests", + "name": "python-provider-tests", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-06-12T15:05:18+00:00", "endpoint": "https://recoverstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-06-12T15:05:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-12T15:05:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/recoverstore", + "name": "recoverStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-06T18:58:43+00:00", "endpoint": "https://screenshotdocstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-06T18:58:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-16T23:29:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/screenshotdocstore", + "name": "screenshotdocstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-12-07T18:13:20+00:00", "endpoint": "https://spring-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-12-07T18:13:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-12-07T18:13:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-demo", + "name": "Spring-Demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-01T17:01:47+00:00", "endpoint": "https://spring-df-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-01T17:01:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-09-01T17:01:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-df-demo", + "name": "spring-df-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-30T19:16:42+00:00", "endpoint": "https://spring-quickstart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-30T19:16:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-30T19:16:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-quickstart", + "name": "spring-quickstart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-01-17T10:27:02+00:00", "endpoint": "https://spring-sync-token.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-01-17T10:27:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-01-17T10:27:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-sync-token", + "name": "spring-sync-token", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-19T17:09:21+00:00", "endpoint": "https://springdocchecks.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-19T17:09:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-19T17:09:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/springdocchecks", + "name": "SpringDocChecks", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-20T05:54:32+00:00", "endpoint": "https://t-vvidyasaga-ac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-20T05:54:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-20T05:54:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac", + "name": "t-vvidyasaga-ac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-23T16:43:34+00:00", "endpoint": "https://t-vvidyasaga-ac-learn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-23T16:43:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-23T16:43:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac-learn", + "name": "t-vvidyasaga-ac-learn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-27T17:42:41+00:00", "endpoint": "https://t-vvidyasaga-ac2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-27T17:42:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-27T17:42:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac2", + "name": "t-vvidyasaga-ac2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-12T16:26:03+00:00", "endpoint": "https://telemetryhashvalidation.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-12T16:26:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-13T23:01:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/telemetryhashvalidation", + "name": "TelemetryHashValidation", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-03-15T20:28:18+00:00", "endpoint": "https://testh.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-03-15T20:28:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-03-15T20:28:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/testh", + "name": "testh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-16T02:10:36+00:00", "endpoint": "https://tolani.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-16T02:10:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-16T02:17:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani", + "name": "tolani", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-29T21:40:07+00:00", "endpoint": "https://tolani-api-version-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-29T21:40:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-29T21:40:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-api-version-test", + "name": "tolani-api-version-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T17:56:34+00:00", "endpoint": "https://tolani-cnry-dev-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T17:56:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T17:56:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-cnry-dev-test", + "name": "tolani-cnry-dev-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "2196a2a0-d665-409c-a05a-470b2b6409bf", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-06-19T20:20:22+00:00", + "endpoint": "https://tolani-demo.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-06-19T20:20:22+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-06-23T20:58:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-demo", + "name": "tolani-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T03:59:14+00:00", "endpoint": "https://tolani-prod-aad-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T03:59:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-19T21:22:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-aad-test", + "name": "tolani-prod-aad-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-01T16:38:22+00:00", "endpoint": "https://tolani-snap-ref-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-01T16:38:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-09T21:20:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-snap-ref-demo", + "name": "tolani-snap-ref-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-15T00:05:33+00:00", "endpoint": "https://tolani-snapshot-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-15T00:05:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-15T00:13:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-snapshot-test", + "name": "tolani-snapshot-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-19T18:22:29+00:00", "endpoint": "https://tolani-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-19T18:22:29+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-07-22T22:41:23+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-store", + "name": "tolani-store", "tags": {"myTestTag": "[12,14,15]", "myTestTag2": + "{\"key\":\"value\"}", "myTestTag3": "askldfjlksdjfksdf\\"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-24T22:15:44+00:00", "endpoint": "https://tolani-test-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-24T22:15:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-24T22:15:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-test-1", + "name": "tolani-test-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "brazilsouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-11T15:37:27+00:00", "endpoint": "https://brzls.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-11T15:37:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-11T15:37:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/brzls", + "name": "Brzls", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T17:29:23+00:00", "endpoint": "https://albertofori-notification-canadacentral.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-10T17:29:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T18:10:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-canadacentral", + "name": "albertofori-notification-canadacentral", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-05-29T20:34:57+00:00", "endpoint": "https://avgupta-appc-cac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-29T20:34:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-29T20:35:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-cac", + "name": "avgupta-appc-cac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.ManagedIdentity/userAssignedIdentities/junbchen-identity-cmk": + {"principalId": "e790947e-9f1d-4382-af0f-eec738f38956", "clientId": "43310a7e-10ee-4a8d-95d5-512587f292b9"}}, + "principalId": "c315f504-623d-47f4-8c17-5990a848717b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-07T14:26:45+00:00", + "endpoint": "https://junbchenconfig-demo-ca.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://junbchenkeyvault.vault.azure.net/keys/key1/6998a4384b444f4bad0bf27a556ad115", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-07T14:26:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T06:18:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-demo-ca", + "name": "junbchenconfig-demo-ca", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastasia", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T06:45:35+00:00", "endpoint": "https://appc-6oexkucpmwqte.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T06:45:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T09:57:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-rg-azd-test/providers/Microsoft.AppConfiguration/configurationStores/appc-6oexkucpmwqte", + "name": "appc-6oexkucpmwqte", "tags": {"azd-env-name": "test"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastasia", + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-07-31T02:07:56+00:00", + "endpoint": "https://linglingye-appconfig-test.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-31T02:07:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-15T08:21:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linglingye-rg/providers/Microsoft.AppConfiguration/configurationStores/linglingye-appconfig-test", + "name": "linglingye-appconfig-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastasia", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-03-05T00:58:22+00:00", "endpoint": "https://teststore2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2021-03-05T00:58:22+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-05-10T06:06:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vendorteamtestrg/providers/Microsoft.AppConfiguration/configurationStores/teststore2", + "name": "TestStore2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-07T12:21:12+00:00", "endpoint": "https://202503071050snapshotfilters5in556ck5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:21:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:21:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050snapshotfilters5in556ck5", + "name": "202503071050SnapshotFilters5in556ck5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-07T12:21:12+00:00", "endpoint": "https://202503071050snapshotstoreonrneh6qvta.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:21:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:21:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050snapshotstoreonrneh6qvta", + "name": "202503071050SnapshotStoreonrneh6qvta", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T18:33:42+00:00", "endpoint": "https://albertofori-notification-frc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-11-10T18:33:42+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-09-11T09:16:13+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-frc", + "name": "albertofori-notification-frc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, + "principalId": "03682d8e-25ea-4541-a59b-9ebbbc02a84f", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-05-17T16:27:19+00:00", + "endpoint": "https://haiyiwen-francecentral-0517.azconfig.io", "encryption": + {"keyVaultProperties": {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt-2", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-17T16:27:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-12T17:24:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-francecentral-0517", + "name": "haiyiwen-francecentral-0517", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:51:58+00:00", "endpoint": "https://snapshotstore3tzfoxsj2hh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:51:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:51:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstore3tzfoxsj2hh", + "name": "SnapshotStore3tzfoxsj2hh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:53:28+00:00", "endpoint": "https://snapshotstore6nglgwfngm4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:53:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:53:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstore6nglgwfngm4", + "name": "SnapshotStore6nglgwfngm4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-19T19:57:22+00:00", "endpoint": "https://snapshotstorecw2f475e3rbcjdgongmzj3n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:57:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:57:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorecw2f475e3rbcjdgongmzj3n", + "name": "SnapshotStorecw2f475e3rbcjdgongmzj3n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T04:41:14+00:00", "endpoint": "https://snapshotstoredtargmcnsz3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:41:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:41:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoredtargmcnsz3", + "name": "SnapshotStoredtargmcnsz3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:02:07+00:00", "endpoint": "https://snapshotstorekz4vgltrfnd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:02:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:02:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorekz4vgltrfnd", + "name": "SnapshotStorekz4vgltrfnd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T04:42:38+00:00", "endpoint": "https://snapshotstoren7gxfapmtjw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:42:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:42:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoren7gxfapmtjw", + "name": "SnapshotStoren7gxfapmtjw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-19T19:56:01+00:00", "endpoint": "https://snapshotstoreopjrr76ymkn6nu453hufygh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:56:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:56:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoreopjrr76ymkn6nu453hufygh", + "name": "SnapshotStoreopjrr76ymkn6nu453hufygh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-01-29T23:28:22+00:00", "endpoint": "https://snapshotstoretpfayszap3s.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbwbtajdklwfk67dv4364xpuqyofxkkayxfyccf3lna6dulmb54f3trwrfxt7kqumw/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoretpfayszap3s", + "name": "SnapshotStoretpfayszap3s", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:03:21+00:00", "endpoint": "https://snapshotstorexkvbufgx7cu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:03:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:03:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorexkvbufgx7cu", + "name": "SnapshotStorexkvbufgx7cu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-06T10:09:10+00:00", "endpoint": "https://freestore45.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-06T10:09:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T10:15:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestore45", + "name": "freestore45", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-07T07:55:12+00:00", "endpoint": "https://freeteststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-07T07:55:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:15:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freeteststore1", + "name": "freeteststore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-22T09:57:08+00:00", "endpoint": "https://testfree.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-22T09:57:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-22T09:58:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testfree", + "name": "testfree", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-02T07:53:38+00:00", "endpoint": "https://testfree-cwanjau.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-02T07:53:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:50:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testfree-cwanjau", + "name": "testfree-cwanjau", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "germanywestcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-06T09:56:07+00:00", "endpoint": "https://freestoreeee.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-06T09:56:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T10:05:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestoreeee", + "name": "freeStoreeee", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uaenorth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-31T20:44:08+00:00", "endpoint": "https://xuxu-premium-test-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2024-05-31T20:44:08+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-05-31T20:44:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-premium-test-1", + "name": "xuxu-premium-test-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "norwayeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-05-12T20:17:59+00:00", "endpoint": "https://jlinares-noe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-12T20:17:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-17T09:11:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-noe", + "name": "jlinares-noe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southafricanorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-05-17T21:28:52+00:00", "endpoint": "https://jlinares-test-zan.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-05-17T21:28:52+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-05-17T21:28:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-zan", + "name": "jlinares-test-zan", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "ukwest", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-25T18:39:43+00:00", "endpoint": "https://albertoforiteststore3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-25T18:39:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-25T18:39:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforiteststore3", + "name": "albertoforitestStore3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T18:05:55+00:00", "endpoint": "https://avgupta-appc-wus3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-23T18:05:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-10T23:11:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus3", + "name": "avgupta-appc-wus3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-31T16:36:31+00:00", "endpoint": "https://jimmy-arm-kv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-31T16:36:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-31T16:38:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmy-arm-kv", + "name": "jimmy-arm-kv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-15T20:48:29+00:00", "endpoint": "https://jimmyca-local-auth-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-15T20:48:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-15T20:48:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-local-auth-test", + "name": "jimmyca-local-auth-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-17T18:47:49+00:00", "endpoint": "https://jimmyca-temp-repro.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-17T18:47:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-17T18:47:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-temp-repro", + "name": "jimmyca-temp-repro", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-13T20:07:21+00:00", "endpoint": "https://jlinares-kj-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-13T20:07:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-13T20:08:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-kj-test", + "name": "jlinares-kj-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "brazilsoutheast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-02-10T07:12:05+00:00", "endpoint": "https://jlinares-brse.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-10T07:12:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-02-10T07:12:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-brse", + "name": "jlinares-brse", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-10-19T16:35:22+00:00", "endpoint": "https://abcappc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-10-19T16:35:22+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-30T22:58:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/abcappc", + "name": "abcAppC", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-24T17:22:12+00:00", "endpoint": "https://abcdevtest123.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-04-24T17:22:12+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-17T21:40:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_test1/providers/Microsoft.AppConfiguration/configurationStores/abcdevtest123", + "name": "abcdevTest123", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-19T19:00:55+00:00", "endpoint": "https://bugbash-test-exp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-19T19:00:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-19T19:00:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/minhaz-test/providers/Microsoft.AppConfiguration/configurationStores/bugbash-test-exp", + "name": "bugbash-test-exp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-22T02:28:03+00:00", "endpoint": "https://haiyiwen-dev-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-22T02:28:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-22T02:28:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-dev-swc", + "name": "haiyiwen-dev-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:40:56+00:00", "endpoint": "https://haiyiwen-swc-0716-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:40:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:40:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-swc-0716-1", + "name": "haiyiwen-swc-0716-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-13T00:19:15+00:00", "endpoint": "https://jiyu-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-13T00:19:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-13T00:21:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-swc", + "name": "jiyu-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-02-13T22:31:11+00:00", "endpoint": "https://jlinares-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-13T22:31:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-02-17T17:57:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-swc", + "name": "jlinares-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-12T09:12:08+00:00", "endpoint": "https://mgich-swc.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": "d272d921-c6fa-4394-889a-acb85a9de520"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-12T09:12:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-12T09:12:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-swc", + "name": "mgich-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-17T20:31:20+00:00", "endpoint": "https://portal-test-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-17T20:31:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T20:38:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-swc", + "name": "portal-test-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-01-22T22:31:08+00:00", "endpoint": "https://tolani-prod-swc-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-22T22:31:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-22T22:31:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-swc-1", + "name": "tolani-prod-swc-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "switzerlandwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-07-01T18:05:05+00:00", "endpoint": "https://jlinares-slw1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-01T18:05:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-07-01T18:05:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-slw1", + "name": "jlinares-slw1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "qatarcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-08-05T22:33:14+00:00", "endpoint": "https://jlinares-test-qac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-05T22:33:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-05T22:33:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-qac", + "name": "jlinares-test-qac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southindia", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-08-14T04:10:16+00:00", "endpoint": "https://jlinares-sin-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-14T04:10:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-14T04:10:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-sin-test", + "name": "jlinares-sin-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "polandcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-11T17:58:49+00:00", "endpoint": "https://jlinares-plc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-11T17:58:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-11T17:59:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-plc", + "name": "jlinares-plc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:16:04+00:00", "endpoint": "https://jlinares-cae.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:16:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-cae", + "name": "jlinares-cae", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "norwaywest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:17:12+00:00", "endpoint": "https://jlinares-now.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:17:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:17:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-now", + "name": "jlinares-now", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:19:10+00:00", "endpoint": "https://jlinares-auc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:19:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-31T21:47:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-auc", + "name": "jlinares-auc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiacentral2", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:20:00+00:00", "endpoint": "https://jlinares-auc2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:20:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-22T23:30:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-auc2", + "name": "jlinares-auc2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francesouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:24:27+00:00", "endpoint": "https://jlinares-frs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:24:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:24:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-frs", + "name": "jlinares-frs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "israelcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-08T22:28:48+00:00", "endpoint": "https://jlinares-ilc-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-08T22:28:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-29T21:06:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-ilc-test", + "name": "jlinares-ilc-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southafricawest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-19T21:22:00+00:00", "endpoint": "https://jlinares-zaw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-19T21:22:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-19T21:22:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-zaw", + "name": "jlinares-zaw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "mexicocentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-01T22:05:42+00:00", "endpoint": "https://jlinares-mxc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-01T22:05:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-01T22:07:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-mxc", + "name": "jlinares-mxc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "spaincentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T17:59:45+00:00", "endpoint": "https://albertofori-notification-spaincentral.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T17:59:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-29T18:02:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-spaincentral", + "name": "albertofori-notification-spaincentral", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "spaincentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-29T21:04:44+00:00", "endpoint": "https://jlinares-esc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-29T21:04:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-29T21:07:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-esc", + "name": "jlinares-esc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "newzealandnorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-09-25T16:56:29+00:00", "endpoint": "https://jlinares-nzn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-25T16:56:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-25T16:56:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-nzn", + "name": "jlinares-nzn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uaecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-07-22T20:33:25+00:00", "endpoint": "https://jlinares-uaec.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-22T20:33:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-22T20:33:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-uaec", + "name": "jlinares-uaec", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "jioindiacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-07-22T20:20:55+00:00", "endpoint": "https://jlinares-jinc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-22T20:20:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-22T20:20:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-jinc", + "name": "jlinares-jinc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-06T02:14:44+00:00", "endpoint": "https://app-central-us-euap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 1728000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-03-06T02:14:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-05T19:04:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/app-central-us-euap", + "name": "app-central-us-euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-10T20:11:10+00:00", "endpoint": "https://avgupta-pe-appc-cuseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc-cuseuap/privateEndpointConnections/dupe-connection-name", + "name": "dupe-connection-name", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-cuseuap/providers/Microsoft.Network/privateEndpoints/tolani-pe-1"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-10T20:11:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-10T16:59:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc-cuseuap", + "name": "avgupta-pe-appc-cuseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2021-12-14T21:54:18+00:00", "endpoint": "https://jimmyca-cuseuap-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cuseuap-3/privateEndpointConnections/jimmyca-pe", + "name": "jimmyca-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.Network/privateEndpoints/jimmyca-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-12-14T21:54:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T05:44:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cuseuap-3", + "name": "jimmyca-cuseuap-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, + "principalId": "83480881-97ec-43f7-8dfc-8200cb4ac000", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-10-16T16:09:26+00:00", + "endpoint": "https://jiyu-cuseuap-store-1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, "privateEndpointConnections": null, + "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-10-16T16:09:26+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:56+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-cuseuap-store-1", + "name": "jiyu-cuseuap-store-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-07T07:59:52+00:00", "endpoint": "https://jiyu-cuseuap-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-07T07:59:52+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:33+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-1/providers/Microsoft.AppConfiguration/configurationStores/jiyu-cuseuap-test2", + "name": "jiyu-cuseuap-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-02-02T18:32:20+00:00", "endpoint": "https://jlinares-cuseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-02T18:32:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-02T18:32:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-cuseuap", + "name": "jlinares-cuseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-07T18:16:04+00:00", "endpoint": "https://kjeong-portal-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-07T18:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-05T14:26:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/kjeong-portal-test", + "name": "kjeong-portal-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-15T00:46:21+00:00", "endpoint": "https://nspinttestpoer5zfwwjmp2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-15T00:46:21+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:13+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/nspinttestpoer5zfwwjmp2", + "name": "nspinttestpoer5zfwwjmp2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "identity": {"type": "SystemAssigned", "principalId": + "6f851a0b-ea65-444a-bf7e-209c41feaabc", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-03-01T03:21:20+00:00", + "endpoint": "https://portal-test3.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-01T03:21:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-03T20:52:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test3", + "name": "portal-test3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-05-01T22:40:28+00:00", "endpoint": "https://albertofori-canary-statistics-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-01T22:40:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-07T23:54:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-canary-statistics-test", + "name": "albertofori-canary-statistics-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-28T21:46:59+00:00", "endpoint": "https://albertofori-notification-euap-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-28T21:46:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-28T21:46:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-euap-test", + "name": "albertofori-notification-euap-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-09T23:19:34+00:00", "endpoint": "https://albertofori-notification-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-09T23:19:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-09T23:21:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-test", + "name": "albertofori-notification-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-25T17:21:39+00:00", "endpoint": "https://avgupta-appc-eus2euap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-25T17:21:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-03T01:44:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus2euap", + "name": "avgupta-appc-eus2euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "identity": {"type": "SystemAssigned", "principalId": + "76d7f893-7d86-4e17-8095-3428a0f517dd", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-04T21:19:03+00:00", + "endpoint": "https://cdnconfigs.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-04T21:19:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-15T22:47:29+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/cdnconfigs", + "name": "cdnconfigs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-11T14:25:58+00:00", "endpoint": "https://haiyiwen-eus2euap-0311.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-03-11T14:25:58+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-28T19:22:20+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2euap-0311", + "name": "haiyiwen-eus2euap-0311", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-05-19T18:00:03+00:00", "endpoint": "https://haiyiwen-euseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-05-19T18:00:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-05-15T23:43:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-euseuap", + "name": "haiyiwen-euseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-10-20T16:09:11+00:00", "endpoint": "https://haiyiwen-euseuap-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-20T16:09:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-10-20T16:09:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-euseuap-2", + "name": "haiyiwen-euseuap-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jimmyca-wus/providers/microsoft.managedidentity/userassignedidentities/jimmyca-mi-4": + {"principalId": "949c3968-a2e3-4bdc-b9fe-920f4d5a183f", "clientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, + "principalId": "8462ba54-c3ac-4a7e-ae69-f49bb0525330", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2020-02-14T00:05:52+00:00", + "endpoint": "https://jimmyca-eus2euap.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": null, + "createdByType": null, "createdAt": "2020-02-14T00:05:52+00:00", "lastModifiedBy": + null, "lastModifiedByType": null, "lastModifiedAt": "2021-08-05T15:50:34+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-eus2euap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-eus2euap", + "name": "jimmyca-eus2euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-07T20:43:21+00:00", "endpoint": "https://jiyu-canary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe8", + "name": "jiyu-pe8", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe8"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe-13", + "name": "jiyu-pe-13", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-13"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe-14", + "name": "jiyu-pe-14", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-14"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-07T20:43:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T23:14:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary", + "name": "jiyu-canary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-11-21T00:29:25+00:00", "endpoint": "https://storeincanary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-11-21T00:29:25+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-11-21T00:29:25+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/storeincanary", + "name": "StoreInCanary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-29T17:42:37+00:00", "endpoint": "https://testplugincanary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T17:42:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-29T17:42:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testplugincanary", + "name": "testplugincanary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedensouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-01T00:16:04+00:00", "endpoint": "https://appconfig-dotnetprovider-integrationtest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-01T00:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-24T22:30:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dotnetprovider-integrationtest/providers/Microsoft.AppConfiguration/configurationStores/appconfig-dotnetprovider-integrationtest", + "name": "appconfig-dotnetprovider-integrationtest", "tags": {}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "swedensouth", + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-09-19T21:45:59+00:00", + "endpoint": "https://jlinares-sws-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-09-19T21:45:59+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-09-19T21:46:00+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-sws-test", + "name": "jlinares-sws-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T17:22:44+00:00", "endpoint": "https://albertofori-notification-test-twn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T17:22:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-08T20:41:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-test-twn", + "name": "albertofori-notification-test-twn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-26T23:42:16+00:00", "endpoint": "https://jlinares-twn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-26T23:42:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-26T23:44:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-twn", + "name": "jlinares-twn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorthwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T20:26:19+00:00", "endpoint": "https://jlinares-twnw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T20:26:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-29T20:32:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-twnw", + "name": "jlinares-twnw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "israelnorthwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-12T01:32:16+00:00", "endpoint": "https://albertofori-notification-ilnw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-12T01:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-12T01:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-ilnw", + "name": "albertofori-notification-ilnw", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZtbT%2bNGFID%2fi1X1CRMIS6MiraopeNsUSKidKF2Ul4kzCU58Y8ZOsiD%2be885doZJoFJfzxuwyq6%2bPdeZ%2bXj1crWr7pJ8bbyrV28SRKPrYDAKxd048q68p6oqzVWnk8lcLlWm8upUvtRancZF1jH1zMQ6KaukyE2n15tfytnZL35Pzef%2bF6VifxarX%2f3Lbnx%2bPutdzmYXvU6pi00yV9p07pNYF6ZYVKeiLK%2bLfJEsay3xr%2brE7ndRVWhlfpNl4m%2fgc%2fDnX7tn3S8%2b%2fENn5z%2f%2fZNZJOSrWKv9qFHxubopax8o78ZhSrJIs%2bxFLP66NL8uy%2ba8AHAwMt4js6l1dKVMZDCEwBIIfw0LJCvJ9kaSV0giTVxuZpZuLZ7N70s%2fLp%2bdd1YYnGIfDh4BX0ZRSy0wBmgGIaDge%2fYlBElFf8OKwpeLPi4309xknxhG2sr5AKl5EVZHKPPFlrXxMO78LARoMQwgQwzRDgrpcajlXC62wF4xvKdtYxgSG2Nyv18Y%2fB5CmqXWZgWBGqV2pdIIzncYusDRDhhtLUyhUJBiQ30Px2L9jmF0z%2fZJiG74WA3Ej2v2FV16t6nwWP6m8WVv8ucoKP5ZtlfCbKphTNEqw%2bX4LxeA6YBkWk8vSPBUNy269mdWL5a4X10B1OwwDnrmGwcFh4sdbma8kwvwRhPdi8N05xPAqH8ShfFPNjBQBTXxeELj1%2b6VWWVJnzeqCXRlAJuI7vzVslSa5hAOonxe4ttBYEd%2fCPjRpXMZ4hcbC0LB8kTkQjW%2bxXHhxyHQGh7FiUejEtugLYGn2lwteMDYo6xWVC3A4KwzjiplpQyUzCW4CmJx0qcQrNO0ZjPZ9s41p348m%2fdFjEN6JwQ2%2fwrG5ZtItduW%2fxUiELENjSaiVPcsYaKg59wc33C4vLItJ8n0LeBhihvEOTZliVJrjDOM%2bFktsY80Cw7jk82ILGPZGjHdqyRpT6xiG2c2FrXugeT9hMry5sCALukfuR6EI7ngnWJLG%2b1bs7PyMy%2f9FYvnfB%2f%2f0r4e8Q5PtaNg%2fiD7PrdJWizIIMggmj4HAac%2f5RJm%2f0GFS8LwgsyGppcKY%2fNUf0h7Ju1BWSY4wLcQ4CsbigdcBrCx0JVNqxHi%2bb99a%2bHHgIaVM6yUEBEQK%2fQNYIjoWcx72Zmv2I3Ik%2bhMx4Ny%2fqi32L4eD8agHFpz1zRpGQeEH41zxwdVrlSySmF4p%2fSQFuLcTT%2bpMLJdaLWWl5mQAQWsT4T2Ao9F0L%2fVaafjR6%2fRQapp6V1OuWtPUO5m%2bt3NuJJ%2bqTYSE6TmOuPEc6E3E0cwnbhz%2fR3GyYWrsE26I75oTgdDUxWDhkzQ3ls9UJ6KytyFIxo3qg%2b5ESDS8eKYcrnyO8kQ4rfTENDbv2hPBtMs4OxiIy7H6RDzNEOqy43H1JwJxXg%2b5wZACRRAHEhQ3jM81KFs1HKeOfWeHAoEl9ECG4hae%2f9KhiMwVoriBYZBcJYqAPkpR3LBcLYqQxq0YxQ3kEzWKeGDNaeUobkT24hT0KEJxHktoeWMLhLXkgyLVJBxJUtxYnDsU274viKfZdeBrXnchNttaVYpYnHWH48HHMqEu1ZSQK0xxC9EHZapFOpCmuEHZGKE2RUCuOMWWhlocqFNNiPCXv%2bjRiy3PXp8ingOBii0SKFRE8y5RsUUBjYpQmmUHJxBbFFCpCMXeuLVPrGyBQED6FIjdbYjt1KhUEVJzUqW1lG14QKsilgOxii3NXq0iJOe8wLolgF5FPAeCFdsQgWLVRMeRrNjCgGZFMEeiFVseUK2IB25BuM8d1K2I5Ui4YhsbVK4I6EC64objaldE0771oHjFjQUPOa56RTyOfMWNx244e%2f2KgBxxiS0QaEvHLKxXAtSwCOhIxOIWIOca8aOKNfXevLd%2fAQ%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '365837' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:18:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 50daee56-7444-4943-b080-6716396ef2fa + - c9a6e4b9-d44f-41b1-b1e7-b60c9efef0ef + - d134630d-ca28-46c9-b681-5ca42621f262 + - fdd86cff-0205-4e91-b0f2-ca9e412170f6 + - bea7cd48-0c2d-4661-a4a5-f03cd787e7b1 + - 4a955289-fa46-4a4a-8b5a-b6c6b9daaa32 + - 5eefbd56-2183-4e38-ac91-246dd41391cc + - 04fd6c7d-bf0e-4e33-8051-f7655ef5b40b + - d56e5e5a-9ba2-41c1-ada3-680909e50ae5 + - 3f4a7220-a08b-4112-b613-b5bfa0efd8e4 + - f4da9317-a94d-4ea4-ba36-7b2eb7f0437a + - 755bce89-f646-406f-826c-339154b24ad8 + - 0800d2b0-0380-4b9e-a03a-ce492b71eef8 + - 06ccedc6-1978-4ade-b69c-f97a378769a1 + - 77c05e9c-4893-43dd-a4aa-33900229058b + - 101c40f1-ae9c-4178-9ae5-6675550e1bf0 + - 1b04cc4e-530d-4524-8d5a-37a7967339f8 + - d898e2e4-33bd-48d7-b23e-a16be5fbae3f + - 8afffc25-b04c-4396-bdcc-6585fe29026f + - 84ad2c31-55f4-4cba-b906-32bb041d4d7c + - d48734e4-14ae-4000-a3e2-2601897ad56a + - fb266b30-3230-483a-8511-2e76c6a60953 + - bd9e9b11-136a-4d3f-8903-1ebe4b6b99ac + - beb6519f-9544-4446-bd81-589f25f5ca26 + - edad723e-aeb7-43ea-be92-de1703f2d273 + - 73a59575-a0f8-4b64-931e-66e090369b80 + - 4829518c-b045-4d1c-b3da-b690068069b8 + - a436ac72-ffeb-45c5-a593-5f599d924f9d + - 6f4f5d2e-b309-41e4-aada-f2ab1bd92905 + - 334f8e50-85a5-46b7-b800-237e6b809ea4 + - 61ce1aea-96fb-4a54-8180-b251d4ad2003 + - ffcdf52b-d215-43df-8b3c-e6b631be3888 + - 4d0741a7-78d2-4c63-a0cf-2290afb14368 + - 53c5385b-0695-4632-9eec-00bd95a6b5da + - 9406136f-2656-4c12-9a9b-c534d11d2848 + - 31a3f48c-542a-4356-9bc8-d299cb799315 + - 0096bfd5-41c3-431a-8fa0-be354557b1b6 + - d06232cd-53d1-4342-bda2-db194aa127b0 + - 82195c14-a8cd-4096-a118-fccbd72905bf + - 05db90ff-a7a9-47b7-94f8-cc649b3d5070 + - 469cc831-1301-48ac-889d-b30c08c136fb + - e8b6c807-9d04-49b6-b7a3-094fec3ed8c4 + - ef3e9f3e-2737-441b-a96c-3340c292820d + - 10d22c22-0e3c-4555-b240-a664bc9810d0 + - 215db421-dd71-4f8d-9d87-e1554a520bb7 + - 02bc4832-6a13-4f57-8682-db7ab63cff48 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 63DF604AC9224FEA9275C7BD36DF4158 Ref B: MAA201060516049 Ref C: 2025-08-15T03:18:44Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label --prefix + -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZtbT%2BNGFID/i1X1CRMIS6MiraopeNsUSKidKF2Ul4kzCU58Y8ZOsiD%2Be885doZJoFJfzxuwyq6%2BPdeZ%2BXj1crWr7pJ8bbyrV28SRKPrYDAKxd048q68p6oqzVWnk8lcLlWm8upUvtRancZF1jH1zMQ6KaukyE2n15tfytnZL35Pzef%2BF6VifxarX/3Lbnx%2BPutdzmYXvU6pi00yV9p07pNYF6ZYVKeiLK%2BLfJEsay3xr%2BrE7ndRVWhlfpNl4m/gc/DnX7tn3S8%2B/ENn5z/ZNZJOSrWKv9qFHxubopax8o78ZhSrJIs%2BxFLP66NL8uy%2Ba8AHAwMt4js6l1dKVMZDCEwBIIfw0LJCvJ9kaSV0giTVxuZpZuLZ7N70s/Lp%2Bdd1YYnGIfDh4BX0ZRSy0wBmgGIaDge/YlBElFf8OKwpeLPi4309xknxhG2sr5AKl5EVZHKPPFlrXxMO78LARoMQwgQwzRDgrpcajlXC62wF4xvKdtYxgSG2Nyv18Y/B5CmqXWZgWBGqV2pdIIzncYusDRDhhtLUyhUJBiQ30Px2L9jmF0z/ZJiG74WA3Ej2v2FV16t6nwWP6m8WVv8ucoKP5ZtlfCbKphTNEqw%2BX4LxeA6YBkWk8vSPBUNy269mdWL5a4X10B1OwwDnrmGwcFh4sdbma8kwvwRhPdi8N05xPAqH8ShfFPNjBQBTXxeELj1%2B6VWWVJnzeqCXRlAJuI7vzVslSa5hAOonxe4ttBYEd/CPjRpXMZ4hcbC0LB8kTkQjW%2BxXHhxyHQGh7FiUejEtugLYGn2lwteMDYo6xWVC3A4KwzjiplpQyUzCW4CmJx0qcQrNO0ZjPZ9s41p348m/dFjEN6JwQ2/wrG5ZtItduW/xUiELENjSaiVPcsYaKg59wc33C4vLItJ8n0LeBhihvEOTZliVJrjDOM%2BFktsY80Cw7jk82ILGPZGjHdqyRpT6xiG2c2FrXugeT9hMry5sCALukfuR6EI7ngnWJLG%2B1bs7PyMy/9FYvnfB/0r4e8Q5PtaNg/iD7PrdJWizIIMggmj4HAac/5RJm/0GFS8LwgsyGppcKY/NUf0h7Ju1BWSY4wLcQ4CsbigdcBrCx0JVNqxHi%2Bb99a%2BHHgIaVM6yUEBEQK/QNYIjoWcx72Zmv2I3Ik%2BhMx4Ny/qi32L4eD8agHFpz1zRpGQeEH41zxwdVrlSySmF4p/SQFuLcTT%2BpMLJdaLWWl5mQAQWsT4T2Ao9F0L/VaafjR6/RQapp6V1OuWtPUO5m%2Bt3NuJJ%2BqTYSE6TmOuPEc6E3E0cwnbhz/R3GyYWrsE26I75oTgdDUxWDhkzQ3ls9UJ6KytyFIxo3qg%2B5ESDS8eKYcrnyO8kQ4rfTENDbv2hPBtMs4OxiIy7H6RDzNEOqy43H1JwJxXg%2B5wZACRRAHEhQ3jM81KFs1HKeOfWeHAoEl9ECG4hae/9KhiMwVoriBYZBcJYqAPkpR3LBcLYqQxq0YxQ3kEzWKeGDNaeUobkT24hT0KEJxHktoeWMLhLXkgyLVJBxJUtxYnDsU274viKfZdeBrXnchNttaVYpYnHWH48HHMqEu1ZSQK0xxC9EHZapFOpCmuEHZGKE2RUCuOMWWhlocqFNNiPCXv%2BjRiy3PXp8ingOBii0SKFRE8y5RsUUBjYpQmmUHJxBbFFCpCMXeuLVPrGyBQED6FIjdbYjt1KhUEVJzUqW1lG14QKsilgOxii3NXq0iJOe8wLolgF5FPAeCFdsQgWLVRMeRrNjCgGZFMEeiFVseUK2IB25BuM8d1K2I5Ui4YhsbVK4I6EC64objaldE0771oHjFjQUPOa56RTyOfMWNx244e/2KgBxxiS0QaEvHLKxXAtSwCOhIxOIWIOca8aOKNfXevLd/AQ%3D%3D + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:50+00:00", "endpoint": "https://featurefiltertestquqw5w3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestquqw5w3", + "name": "FeatureFilterTestquqw5w3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:30+00:00", "endpoint": "https://featurefiltertestvmh264rozmfl2rfdmwj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestvmh264rozmfl2rfdmwj", + "name": "FeatureFilterTestvmh264rozmfl2rfdmwj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://featurefiltertestwroox3kw3473yar2iys.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestwroox3kw3473yar2iys", + "name": "FeatureFilterTestwroox3kw3473yar2iys", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:17+00:00", "endpoint": "https://featurenamespacetest3zfo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetest3zfo", + "name": "FeatureNamespaceTest3zfo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-29T23:28:21+00:00", "endpoint": "https://featurenamespacetest43nd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3deuywmwdctmiw3s7hmjcw2tmqnelmu4o67k22372j3wxo6fmrhq2w3zzwjipe7l5/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetest43nd", + "name": "FeatureNamespaceTest43nd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://featurenamespacetestdm3m.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestdm3m", + "name": "FeatureNamespaceTestdm3m", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://featurenamespacetestl2rv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestl2rv", + "name": "FeatureNamespaceTestl2rv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:58:27+00:00", "endpoint": "https://featurenamespacetestomjxuvpkpmgwfeje.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:58:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:58:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestomjxuvpkpmgwfeje", + "name": "FeatureNamespaceTestomjxuvpkpmgwfeje", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:28+00:00", "endpoint": "https://featurenamespacetestooeq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestooeq", + "name": "FeatureNamespaceTestooeq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:36:08+00:00", "endpoint": "https://featurenamespacetestvjoivvcjifknwzao.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:36:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:36:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestvjoivvcjifknwzao", + "name": "FeatureNamespaceTestvjoivvcjifknwzao", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://featurenamespacetestxed3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestxed3", + "name": "FeatureNamespaceTestxed3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://featurenamespacetestysdks2bhjk7idleh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestysdks2bhjk7idleh", + "name": "FeatureNamespaceTestysdks2bhjk7idleh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:14+00:00", "endpoint": "https://featuretest3fn4mdqdwkvlndvuwfdofk3nr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretest3fn4mdqdwkvlndvuwfdofk3nr", + "name": "FeatureTest3fn4mdqdwkvlndvuwfdofk3nr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:20+00:00", "endpoint": "https://featuretest4o7tljrbfkuwj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretest4o7tljrbfkuwj", + "name": "FeatureTest4o7tljrbfkuwj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://featuretestckfolm256bht24scu2gxt2jxo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestckfolm256bht24scu2gxt2jxo", + "name": "FeatureTestckfolm256bht24scu2gxt2jxo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:38+00:00", "endpoint": "https://featuretestct5gfchdp63sj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestct5gfchdp63sj", + "name": "FeatureTestct5gfchdp63sj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:49:44+00:00", "endpoint": "https://featuretestk65tt5ts6zra7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:49:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:49:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk4hbkzkjzu2at45fpfafydyfdxvqrlfr3xepr3lp6uzumo5kdsauqvuew6f3tw62u/providers/Microsoft.AppConfiguration/configurationStores/featuretestk65tt5ts6zra7", + "name": "FeatureTestk65tt5ts6zra7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:15+00:00", "endpoint": "https://featuretestkqkahggahaewy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestkqkahggahaewy", + "name": "FeatureTestkqkahggahaewy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:14+00:00", "endpoint": "https://featuretesto4e67aajlsexw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretesto4e67aajlsexw", + "name": "FeatureTesto4e67aajlsexw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:29+00:00", "endpoint": "https://featuretestop22xb7epknx4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestop22xb7epknx4", + "name": "FeatureTestop22xb7epknx4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:31+00:00", "endpoint": "https://featuretestzx7ts5ebrspx23s53i5nb2k2y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestzx7ts5ebrspx23s53i5nb2k2y", + "name": "FeatureTestzx7ts5ebrspx23s53i5nb2k2y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-07-24T07:29:54+00:00", "endpoint": "https://freestore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-24T07:29:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:18:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestore", + "name": "freeStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-09T07:58:37+00:00", "endpoint": "https://haiyiwen-010925.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-01-09T07:58:37+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-01T21:11:00+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-010925", + "name": "haiyiwen-010925", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-16T19:14:44+00:00", "endpoint": "https://haiyiwen-eus-0116.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-01-16T19:14:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-06-11T15:57:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-0116", + "name": "haiyiwen-eus-0116", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-01-16T08:16:09+00:00", + "endpoint": "https://haiyiwen-eus-011625.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-011625/privateEndpointConnections/pe-test-eus2-011625", + "name": "pe-test-eus2-011625", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.Network/privateEndpoints/pe-test-eus2-011625"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-16T08:16:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:06:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-011625", + "name": "haiyiwen-eus-011625", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2024-03-11T14:22:45+00:00", "endpoint": "https://haiyiwen-eus-0311.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-03-11T14:22:45+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-04T23:30:27+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-0311", + "name": "haiyiwen-eus-0311", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-10T16:50:17+00:00", "endpoint": "https://haiyiwen-templatedeployment-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-10T16:50:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-10T16:50:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-templatedeployment-1", + "name": "haiyiwen-templatedeployment-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "640e6a52-a59d-48cf-a8d4-f41017c598fe", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-18T13:57:31+00:00", + "endpoint": "https://identitytest35gnbkkbe4fuezy67dlwn2y5.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:57:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:58:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytest35gnbkkbe4fuezy67dlwn2y5", + "name": "IdentityTest35gnbkkbe4fuezy67dlwn2y5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "34ffa33e-f25d-4c67-9253-c2d17c037adc", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-19T19:51:15+00:00", + "endpoint": "https://identitytestbe2akedryikn4m35wjkaqprj.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestbe2akedryikn4m35wjkaqprj", + "name": "IdentityTestbe2akedryikn4m35wjkaqprj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "438e333f-bb2e-497c-97b8-dd202b78c026", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-08-14T05:50:01+00:00", + "endpoint": "https://identitytestcs7kbf253whm.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestcs7kbf253whm", + "name": "IdentityTestcs7kbf253whm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "5a4a8ed8-9446-4999-93d2-9818ea8132a9", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T03:43:27+00:00", + "endpoint": "https://identitytestf72x2di6qyer.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestf72x2di6qyer", + "name": "IdentityTestf72x2di6qyer", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "b0ee3229-1ce2-40d1-a196-b8459b9f9d6b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T04:32:16+00:00", + "endpoint": "https://identitytesthm4vi6lxafkx.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytesthm4vi6lxafkx", + "name": "IdentityTesthm4vi6lxafkx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "20901f43-0e74-480b-9d79-80b7a5bda9d3", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T02:53:34+00:00", + "endpoint": "https://identitytestkpchhiqxtnsq.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestkpchhiqxtnsq", + "name": "IdentityTestkpchhiqxtnsq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "42e1eeb5-d772-47fd-a51c-ab9664dbc084", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-18T13:35:06+00:00", + "endpoint": "https://identitytestpt6bwjon56pcoo6xapfdkyur.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:35:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:35:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestpt6bwjon56pcoo6xapfdkyur", + "name": "IdentityTestpt6bwjon56pcoo6xapfdkyur", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7x3az6ip3htuovmj7yywt4wnb4e2pzvtynszyldonhf5uvclyl523rjteqosjhkqw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/UserAssignedIdentityten5": + {"principalId": "b7e8662e-ea87-44a8-a499-f612e314174c", "clientId": "c555e5da-6354-4a44-acaa-c1226a17c985"}}, + "principalId": "91287d71-e497-4d5c-8782-9eb2d16347f4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-12-03T08:41:53+00:00", + "endpoint": "https://identitytestqlutj2gls4u7.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:53+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7x3az6ip3htuovmj7yywt4wnb4e2pzvtynszyldonhf5uvclyl523rjteqosjhkqw/providers/Microsoft.AppConfiguration/configurationStores/identitytestqlutj2gls4u7", + "name": "IdentityTestqlutj2gls4u7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "209c3dad-96ee-4da7-bf9b-81bcb4c6ee89", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T02:22:10+00:00", + "endpoint": "https://identitytestwha7v4vki3m5.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestwha7v4vki3m5", + "name": "IdentityTestwha7v4vki3m5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:59:07+00:00", "endpoint": "https://importexporttest4buijfjw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:59:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:59:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdewrmekwlmmelzxyujxxqakoibx7umiujirxwe7z5lqr6mkvdzyuw5ovod645k3ab/providers/Microsoft.AppConfiguration/configurationStores/importexporttest4buijfjw", + "name": "ImportExportTest4buijfjw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:23+00:00", "endpoint": "https://importexporttestcnu3plvdikjy7dxroazf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestcnu3plvdikjy7dxroazf", + "name": "ImportExportTestcnu3plvdikjy7dxroazf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:15+00:00", "endpoint": "https://importexporttestfllunlafc2qqdvoasyuk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestfllunlafc2qqdvoasyuk", + "name": "ImportExportTestfllunlafc2qqdvoasyuk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:07+00:00", "endpoint": "https://importexporttestgkjpjcmg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:50:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:50:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestgkjpjcmg", + "name": "ImportExportTestgkjpjcmg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:41:57+00:00", "endpoint": "https://importexporttestjozvptem.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:41:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs4u4depezol5gm5zemiy4hklc4cl7kot6w4mdlqmsd3nlq6bhmbo47vaorof2y7on/providers/Microsoft.AppConfiguration/configurationStores/importexporttestjozvptem", + "name": "ImportExportTestjozvptem", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:00:30+00:00", "endpoint": "https://importexporttestoggywcna.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:00:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:00:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestoggywcna", + "name": "ImportExportTestoggywcna", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:07+00:00", "endpoint": "https://importexporttestukq4e3atuwnwdnrzlyim.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestukq4e3atuwnwdnrzlyim", + "name": "ImportExportTestukq4e3atuwnwdnrzlyim", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:39:40+00:00", "endpoint": "https://importexporttestyouwfl6v.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:39:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:39:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestyouwfl6v", + "name": "ImportExportTestyouwfl6v", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://importtest7ful2grtebgoiq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtest7ful2grtebgoiq", + "name": "ImportTest7ful2grtebgoiq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://importtestgiddobrgr672gjpl3hucqravfy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestgiddobrgr672gjpl3hucqravfy", + "name": "ImportTestgiddobrgr672gjpl3hucqravfy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://importtestlypau4klicvvgj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestlypau4klicvvgj", + "name": "ImportTestlypau4klicvvgj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://importtestq7zk6uhonoio5k.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestq7zk6uhonoio5k", + "name": "ImportTestq7zk6uhonoio5k", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:44:47+00:00", "endpoint": "https://importtesttcbikylpv6ng27xb3emuessgdi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:44:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:44:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtesttcbikylpv6ng27xb3emuessgdi", + "name": "ImportTesttcbikylpv6ng27xb3emuessgdi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:11+00:00", "endpoint": "https://importtestvguwb2vces34ma.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestvguwb2vces34ma", + "name": "ImportTestvguwb2vces34ma", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://importtestxpbvk6phmolm2x.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestxpbvk6phmolm2x", + "name": "ImportTestxpbvk6phmolm2x", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T14:07:21+00:00", "endpoint": "https://importtestxx236biyz2eshdvim62cvnctxv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T14:07:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T14:07:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestxx236biyz2eshdvim62cvnctxv", + "name": "ImportTestxx236biyz2eshdvim62cvnctxv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d0a289d3-184f-4608-bc59-c38f24b695a8", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-05-01T18:05:52+00:00", + "endpoint": "https://jimmyca-ai-sample.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-05-01T18:05:52+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-06-23T02:01:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-ai-sample", + "name": "jimmyca-ai-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-16T17:00:19+00:00", "endpoint": "https://jimmyca-eus-rep.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-16T17:00:19+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-01-06T21:48:03+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-eus-rep", + "name": "jimmyca-eus-rep", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-04-04T02:23:55+00:00", + "endpoint": "https://jiyu-createtest5.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, "privateEndpointConnections": null, + "publicNetworkAccess": "Disabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 3, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-04T02:23:55+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-04-04T02:24:08+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-policytest/providers/Microsoft.AppConfiguration/configurationStores/jiyu-createtest5", + "name": "jiyu-createtest5", "tags": {"tag": "tagv"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-03T21:56:21+00:00", "endpoint": "https://jiyu-eus.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-eus", + "name": "jiyu-pe-eus", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-eus"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-weu", + "name": "jiyu-pe-weu", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-weu"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-eus2", + "name": "jiyu-pe-eus2", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-eus2"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-test", + "name": "jiyu-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-03T21:56:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-03T21:56:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus", + "name": "jiyu-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2023-02-15T23:49:31+00:00", "endpoint": "https://jiyu-eus1.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://jiyu-keyvault1.vault.azure.net/keys/kekeke", + "identityClientId": null}}, "privateEndpointConnections": [], "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-15T23:49:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-08T23:43:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus1", + "name": "jiyu-eus1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "fbaa111b-8b39-4f75-906d-b4300c88aef1", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-02-16T01:50:00+00:00", + "endpoint": "https://jiyu-eus3.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus3/privateEndpointConnections/staticip-test", + "name": "staticip-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/staticip-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-16T01:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T00:08:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus3", + "name": "jiyu-eus3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-18T23:30:42+00:00", "endpoint": "https://jiyu-policyteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-18T23:30:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-19T00:01:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-policytest2/providers/Microsoft.AppConfiguration/configurationStores/jiyu-policyteststore", + "name": "jiyu-policyteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-29T21:47:07+00:00", "endpoint": "https://jiyu-teststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore1/privateEndpointConnections/jiyu-pe-5", + "name": "jiyu-pe-5", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-5"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T21:47:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-02T22:07:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore1", + "name": "jiyu-teststore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-03-19T23:10:19+00:00", "endpoint": "https://jiyu-throttle-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-03-19T23:10:19+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2022-10-11T23:32:37+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-throttle-1", + "name": "jiyu-throttle-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-17T00:37:26+00:00", "endpoint": "https://jlinares-appconfig-eastus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-17T00:37:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-17T01:55:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-eventgridtests/providers/Microsoft.AppConfiguration/configurationStores/jlinares-appconfig-eastus", + "name": "jlinares-appconfig-eastus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-11-18T20:26:57+00:00", "endpoint": "https://jlinares-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-18T20:26:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-02T01:15:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-eus", + "name": "jlinares-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-15T05:37:24+00:00", "endpoint": "https://junbchenconfig-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-pe/privateEndpointConnections/junbchen-pe-test", + "name": "junbchen-pe-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/junbchen-pe-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-15T05:37:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-15T08:42:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-pe", + "name": "junbchenconfig-pe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-19T04:06:47+00:00", "endpoint": "https://juniwang-app-ev2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-19T04:06:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-19T04:06:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-aks/providers/Microsoft.AppConfiguration/configurationStores/juniwang-app-ev2", + "name": "juniwang-app-ev2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d25770c8-9687-44f3-a3bd-cca223b9c6a4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-08T03:33:40+00:00", + "endpoint": "https://juniwang-appc.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-08T03:33:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T23:59:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-aks/providers/Microsoft.AppConfiguration/configurationStores/juniwang-appc", + "name": "juniwang-appc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-30T16:59:23+00:00", "endpoint": "https://kjeong-store-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-30T16:59:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-30T16:59:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/kjeong-store-eus", + "name": "kjeong-store-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://kvrevisiontest4fqq5hbnxzmfbwe5dby2vr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontest4fqq5hbnxzmfbwe5dby2vr", + "name": "KVRevisionTest4fqq5hbnxzmfbwe5dby2vr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://kvrevisiontest4kyrrschro.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontest4kyrrschro", + "name": "KVRevisionTest4kyrrschro", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://kvrevisiontestanuibrjieg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestanuibrjieg", + "name": "KVRevisionTestanuibrjieg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://kvrevisiontestibwkfz57qn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestibwkfz57qn", + "name": "KVRevisionTestibwkfz57qn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:10+00:00", "endpoint": "https://kvrevisiontestkoz2orto53hamn6kwqjrwi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestkoz2orto53hamn6kwqjrwi", + "name": "KVRevisionTestkoz2orto53hamn6kwqjrwi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:57+00:00", "endpoint": "https://kvrevisiontestsnib44xkg5dbxlix2d6pep.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestsnib44xkg5dbxlix2d6pep", + "name": "KVRevisionTestsnib44xkg5dbxlix2d6pep", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:33+00:00", "endpoint": "https://kvrevisiontestuexzu42fm2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestuexzu42fm2", + "name": "KVRevisionTestuexzu42fm2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://kvrevisiontestxsqvwqjrg6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestxsqvwqjrg6", + "name": "KVRevisionTestxsqvwqjrg6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:02:56+00:00", "endpoint": "https://kvsetimporttest67l2slzrs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:02:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:02:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttest67l2slzrs", + "name": "KVSetImportTest67l2slzrs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:52:40+00:00", "endpoint": "https://kvsetimporttest7fzhph6k3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:52:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:52:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttest7fzhph6k3", + "name": "KVSetImportTest7fzhph6k3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://kvsetimporttestdfvwuuwjhqdkccxnon3h5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestdfvwuuwjhqdkccxnon3h5", + "name": "KVSetImportTestdfvwuuwjhqdkccxnon3h5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:04+00:00", "endpoint": "https://kvsetimporttestdtjdjob3d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtkn533s5bkfkpe7zbxjwrxpfrqlsvdzfa42gkxliahqseuj7hheaq37kwjdupgrzz/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestdtjdjob3d", + "name": "KVSetImportTestdtjdjob3d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:44+00:00", "endpoint": "https://kvsetimporttestjetl2c5hb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2d54inm2sz2hhdcwlskpsbcf2rqtxjk35s6cz3paltnbiyqomhp2huz4qkwzxygfs/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestjetl2c5hb", + "name": "KVSetImportTestjetl2c5hb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://kvsetimporttestlfet64gx7k247aqey5idx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestlfet64gx7k247aqey5idx", + "name": "KVSetImportTestlfet64gx7k247aqey5idx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T06:02:59+00:00", "endpoint": "https://kvsetimporttestn2hbyeqob.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T06:02:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T06:02:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestn2hbyeqob", + "name": "KVSetImportTestn2hbyeqob", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:42:14+00:00", "endpoint": "https://kvsetimporttestobgriqz5h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:42:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:42:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestobgriqz5h", + "name": "KVSetImportTestobgriqz5h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:07+00:00", "endpoint": "https://kvsetimporttestv6g2yjvgh3vknvlvyhyk6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:56:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:56:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestv6g2yjvgh3vknvlvyhyk6", + "name": "KVSetImportTestv6g2yjvgh3vknvlvyhyk6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:30:57+00:00", "endpoint": "https://kvsetimporttestx2c3iqwtw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:30:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:30:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestx2c3iqwtw", + "name": "KVSetImportTestx2c3iqwtw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:45:02+00:00", "endpoint": "https://kvtest56m7lyhkxttu5o7cy6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:45:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:45:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtest56m7lyhkxttu5o7cy6", + "name": "KVTest56m7lyhkxttu5o7cy6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://kvtest7gxwoslebimyurrpzo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtest7gxwoslebimyurrpzo", + "name": "KVTest7gxwoslebimyurrpzo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:47:50+00:00", "endpoint": "https://kvtesta5gfdkk3ofsqlz3axj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:47:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:47:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6tafb7kmkszhmrkpiaqncvjdbzopdvao2unlvdouj4qwnswxhzvwhnqwtuvfhap5f/providers/Microsoft.AppConfiguration/configurationStores/kvtesta5gfdkk3ofsqlz3axj", + "name": "KVTesta5gfdkk3ofsqlz3axj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:27+00:00", "endpoint": "https://kvtestaabkjvmmvryoyrcym4f23ipzwbr3il.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestaabkjvmmvryoyrcym4f23ipzwbr3il", + "name": "KVTestaabkjvmmvryoyrcym4f23ipzwbr3il", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:48+00:00", "endpoint": "https://kvtestazuhrmngjidjfiubou.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestazuhrmngjidjfiubou", + "name": "KVTestazuhrmngjidjfiubou", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:01+00:00", "endpoint": "https://kvtestblkljn3if2ed3lee4c.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu6kv5zqu66qjrcvxa7phtrzraaastvxrgb5ba5ksua3wgiaybmuxxco24istvbllk/providers/Microsoft.AppConfiguration/configurationStores/kvtestblkljn3if2ed3lee4c", + "name": "KVTestblkljn3if2ed3lee4c", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:58+00:00", "endpoint": "https://kvtestcncxmq2fygiiwpxlm5irfpslm6rv4y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestcncxmq2fygiiwpxlm5irfpslm6rv4y", + "name": "KVTestcncxmq2fygiiwpxlm5irfpslm6rv4y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:45+00:00", "endpoint": "https://kvtestctemdbzrufgk7gou63.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsjj2m7spcrfqtj5d6xghazzzkbnunaevcb2w5d3aw7nsxyv5srgumrba3fxgc5fj/providers/Microsoft.AppConfiguration/configurationStores/kvtestctemdbzrufgk7gou63", + "name": "KVTestctemdbzrufgk7gou63", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://kvtestddruwaekub4w4vikfhmilya5pnoqp6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestddruwaekub4w4vikfhmilya5pnoqp6", + "name": "KVTestddruwaekub4w4vikfhmilya5pnoqp6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:45:36+00:00", "endpoint": "https://kvtestdzk745w7veqm4qhmg7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:45:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:45:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestdzk745w7veqm4qhmg7", + "name": "KVTestdzk745w7veqm4qhmg7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:54:25+00:00", "endpoint": "https://kvtestedguv5zz26ia6jl5j6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:54:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:54:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestedguv5zz26ia6jl5j6", + "name": "KVTestedguv5zz26ia6jl5j6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://kvtestgypdqe3asrj2yppdaw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestgypdqe3asrj2yppdaw", + "name": "KVTestgypdqe3asrj2yppdaw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:38+00:00", "endpoint": "https://kvtesthhewfemq55gzr7f2ut.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyh2hpoaraulrpisivp7wvr6kewphm76xkiphd3smodzvjlevaaoetk2e5fmwkbvn6/providers/Microsoft.AppConfiguration/configurationStores/kvtesthhewfemq55gzr7f2ut", + "name": "KVTesthhewfemq55gzr7f2ut", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:13+00:00", "endpoint": "https://kvtesthtjrqiylsqskz3c6d5ejdr4mbl6buh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesthtjrqiylsqskz3c6d5ejdr4mbl6buh", + "name": "KVTesthtjrqiylsqskz3c6d5ejdr4mbl6buh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:57:03+00:00", "endpoint": "https://kvtestiaobbatslphjvsdvem.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:57:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:57:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgngwosihwuvyfcdzfp2vjsulqt7fl4vqupolm4lnvn7eojzu3kntls4upzts4b2mbd/providers/Microsoft.AppConfiguration/configurationStores/kvtestiaobbatslphjvsdvem", + "name": "KVTestiaobbatslphjvsdvem", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=3ZDdSsQwEIXfJYhXpmnr1mJhkbIIXlgEu971Jj%2bz3Wy3ScikRSx9d%2bMPuM%2fg5Zw5c4bvLMTAe3jWZkBSLeSxbvdvLanIMQSHFWMjN7yHEUxI%2bMfkIZF2ZDgJlF67oK1BVpaq4CK9oyUoRTcAkgoJ97TIZZaJshDitmTO21kr8MgaLb1FewhJ7dzOmoPuJ8%2b%2fopi8nNpgPeADd5rO8S7ut3mab2h8lGbXVzhot7cDmO0wB8CguRWCBzy742lGNcNI1ps%2fuBfzZM8qIkaR%2b7Huew89D6C%2bMyJw%2fdqQH3%2fD%2fQA%2bSkv320dHqu4%2fNNKRlayf"}' + headers: + cache-control: + - no-cache + content-length: + - '114080' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:18:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - af908646-979c-49ad-b2c2-af0d35926619 + - 141169d4-a08c-4588-9cc2-de11ed6b5e45 + - ca01dee6-8fbf-4869-a8fe-82b5b6e926fb + - a8363633-326b-4f9d-9e4b-ded9a49b925d + - 8466972a-7495-4d06-809d-8dcc8ec371c1 + - 192e484d-90c0-4ba3-a341-a8faf651b769 + - eed89402-fb08-4563-bc7e-e26257709a2c + - 840b1d83-65e3-4d09-9358-6480066c5737 + - 87f2ae99-81c7-470e-b7a3-6c7426a9d5e0 + - a482b00f-4906-4583-b2a4-157211d83344 + - 9462438f-7947-42f5-a284-a2f5dbdc51c2 + - 4cdab6dd-ad36-4cae-805f-65e6422c7d0b + - c5a7ed81-277e-4702-8f27-5ed2a4f943d4 + - 9160a03c-644d-4eb4-b804-d2be4ff7cef5 + - a2d78df6-e038-496d-aca6-dcc9acdcfc2d + - 11daf8ff-070b-4cec-a870-3acf6a45fb71 + - 4a5e0226-49f4-4b60-b8fb-79c68c7e129a + - c2c05a2b-6bab-4daa-9a48-e58bd92798ce + - 2507e941-e323-49a3-a62f-64a58c814e16 + - 7b2c7192-d094-4303-97f5-aaffe7e28385 + - d744bdd1-3d7a-42ad-9be4-bc6e8054210e + - 960c2fa2-3175-4277-8c9e-a82d07a73afa + - 2f2aaf73-071c-49fc-88f7-782078980094 + - 6c52766c-0154-440b-913e-ca58ea5c2e67 + - 473a365a-739c-437e-80a7-980c62067a99 + - 60d9869a-8941-4612-b03b-49ac5f790e52 + - 126dfb3c-0254-4b0e-b1a6-439779a91cec + - 29ff0ab7-70a0-4763-9ac8-35b5093b1709 + - e730c38e-6e82-453e-8859-bb0d523e3ad6 + - d6cceeb6-c804-4751-9675-f41aec5124a6 + - 1de98be1-5ea9-4d28-b076-5bbd7c41b237 + - 3a071c3d-ff9c-4824-bf14-6f13ee995063 + - c5ec5cbb-127b-41a0-904c-7410f5f21797 + - 8a2eb421-71d2-439a-981a-a49c00e28fa4 + - a7cad565-8e17-45db-bd0a-d2ed8d66aa2a + - 2e34c448-5a3b-491a-bec9-279ea42a9084 + - e116e683-869b-4c22-8947-be3c34571f23 + - f9f80ab4-0eda-4813-9e3f-a9ee248f444b + - 9443d2c2-1234-4f06-a9f3-b3a1716336a2 + - 2f8a19da-3186-4631-884d-417f8d465206 + - 5ffdc577-3874-46e5-87b4-8b82861c50e4 + - 0b68833a-f2e4-44f3-afc1-172332302daf + - fa6053e3-cb8f-4e7b-8275-f92fda7821c1 + - 17fa2d73-f956-4dd3-80c0-c95280300441 + - 41246d85-e736-49e3-bebe-bae66c642346 + - 5a3a7b9a-3205-496c-89fc-8c3152a1bcbe + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 097E2AF25CB64B4E9B404A063855590B Ref B: MAA201060515051 Ref C: 2025-08-15T03:18:48Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label --prefix + -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=3ZDdSsQwEIXfJYhXpmnr1mJhkbIIXlgEu971Jj%2Bz3Wy3ScikRSx9d%2BMPuM/g5Zw5c4bvLMTAe3jWZkBSLeSxbvdvLanIMQSHFWMjN7yHEUxI%2BMfkIZF2ZDgJlF67oK1BVpaq4CK9oyUoRTcAkgoJ97TIZZaJshDitmTO21kr8MgaLb1FewhJ7dzOmoPuJ8%2B/opi8nNpgPeADd5rO8S7ut3mab2h8lGbXVzhot7cDmO0wB8CguRWCBzy742lGNcNI1ps/uBfzZM8qIkaR%2B7Huew89D6C%2BMyJw/dqQH3/D/QA%2BSkv320dHqu4/NNKRlayf + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:51+00:00", "endpoint": "https://kvtestihwc3syiqee5ah3iga.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestihwc3syiqee5ah3iga", + "name": "KVTestihwc3syiqee5ah3iga", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:13+00:00", "endpoint": "https://kvtestizmnigytm42qanhxha.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestizmnigytm42qanhxha", + "name": "KVTestizmnigytm42qanhxha", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:42+00:00", "endpoint": "https://kvtestkopv2uhhschtzb2e5n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestkopv2uhhschtzb2e5n", + "name": "KVTestkopv2uhhschtzb2e5n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://kvtestl2ormjtchf7btc3f3u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvhvtc3xrd7c3vvwzmfi4ufblyqdjqcnuenotltaz3gnpg6ixy5v4czw52bht6tnea/providers/Microsoft.AppConfiguration/configurationStores/kvtestl2ormjtchf7btc3f3u", + "name": "KVTestl2ormjtchf7btc3f3u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:50+00:00", "endpoint": "https://kvtestloxzjt7t3tfagqhl2ap6xxngz4wpgd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestloxzjt7t3tfagqhl2ap6xxngz4wpgd", + "name": "KVTestloxzjt7t3tfagqhl2ap6xxngz4wpgd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://kvtesto5vmioemxphsuub3xx7r4sky45ni2f.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesto5vmioemxphsuub3xx7r4sky45ni2f", + "name": "KVTesto5vmioemxphsuub3xx7r4sky45ni2f", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:46+00:00", "endpoint": "https://kvtestp2kbuun66d6ps473pg7ysw3epzlwut.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestp2kbuun66d6ps473pg7ysw3epzlwut", + "name": "KVTestp2kbuun66d6ps473pg7ysw3epzlwut", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:09+00:00", "endpoint": "https://kvtestpj2t6uk6lvtsd7iun2vykrabrj5qjo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestpj2t6uk6lvtsd7iun2vykrabrj5qjo", + "name": "KVTestpj2t6uk6lvtsd7iun2vykrabrj5qjo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://kvtestppk7lrbah7ynxlhe33.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestppk7lrbah7ynxlhe33", + "name": "KVTestppk7lrbah7ynxlhe33", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://kvtestrsei3hg3nqsaujkzgg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestrsei3hg3nqsaujkzgg", + "name": "KVTestrsei3hg3nqsaujkzgg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:43+00:00", "endpoint": "https://kvtestsd77jfbv4d3uzcytfp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg4rrldloh2p7oo6rzuoqwvws4cpfwypu6bzbhqkwdnn3rwkl4dafchtml6zrkztbm/providers/Microsoft.AppConfiguration/configurationStores/kvtestsd77jfbv4d3uzcytfp", + "name": "KVTestsd77jfbv4d3uzcytfp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:38+00:00", "endpoint": "https://kvtesttptetw6qztfw3gv674.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesttptetw6qztfw3gv674", + "name": "KVTesttptetw6qztfw3gv674", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:34:30+00:00", "endpoint": "https://kvtestuycl4et7tf5eb7lsdu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:34:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:34:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestuycl4et7tf5eb7lsdu", + "name": "KVTestuycl4et7tf5eb7lsdu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://kvtestv3dtl6bonwids7ib5x.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestv3dtl6bonwids7ib5x", + "name": "KVTestv3dtl6bonwids7ib5x", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:24:19+00:00", "endpoint": "https://kvtestycmo2q63cxt6vvf67r.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:24:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:24:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestycmo2q63cxt6vvf67r", + "name": "KVTestycmo2q63cxt6vvf67r", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-20T02:14:07+00:00", "endpoint": "https://linglingye-appconfig-quickstart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-20T02:14:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-20T02:14:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linglingye-rg/providers/Microsoft.AppConfiguration/configurationStores/linglingye-appconfig-quickstart", + "name": "linglingye-appconfig-quickstart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-08T20:43:45+00:00", "endpoint": "https://mbtestappconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-08T20:43:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-09T22:26:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/mbtestappconfig", + "name": "mbTestAppConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-05T13:16:53+00:00", "endpoint": "https://mgich-agent-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-05T13:16:53+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T13:16:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-agent-demo", + "name": "mgich-agent-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-07-20T13:49:51+00:00", "endpoint": "https://mgich-demo-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-demo-store/privateEndpointConnections/mgich-demo-privatendpoint", + "name": "mgich-demo-privatendpoint", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.Network/privateEndpoints/mgich-demo-privatendpoint"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-20T13:49:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-29T09:44:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-demo-store", + "name": "Mgich-Demo-store", "tags": {"Tag1": "Value1"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-28T08:17:37+00:00", "endpoint": "https://mgich-dev-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-28T08:17:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-28T08:17:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-dev-store", + "name": "mgich-dev-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "userAssignedIdentities": + {}, "principalId": "7262de24-6e9f-4834-9f65-b1cb524e252e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-08-11T21:32:20+00:00", + "endpoint": "https://mgich-ff.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": null}}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-ff/privateEndpointConnections/mgich", + "name": "mgich", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.Network/privateEndpoints/mgich"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T21:32:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-26T15:07:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-ff", + "name": "Mgich-ff", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-27T23:35:45+00:00", "endpoint": "https://mgich-largestoretest-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-27T23:35:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-11T12:53:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-largestoretest-1", + "name": "Mgich-largestoretest-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-10T07:08:17+00:00", "endpoint": "https://mgich-readerstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-10T07:08:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-26T14:56:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-readerstore", + "name": "mgich-readerstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "8123be57-97f1-4182-b1b1-f6af700545c4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-10-04T16:57:29+00:00", + "endpoint": "https://mgich-stage-1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-04T16:57:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-04T17:38:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-stage-1", + "name": "mgich-stage-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-07-01T10:23:28+00:00", "endpoint": "https://mgich-store-no-experiments.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-01T10:23:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T17:05:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-store-no-experiments", + "name": "mgich-store-no-experiments", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-18T09:11:22+00:00", "endpoint": "https://mgich-store-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-18T09:11:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-18T09:11:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-store-pe", + "name": "mgich-store-pe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-04T18:17:49+00:00", "endpoint": "https://mgich-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-04T18:17:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-04T18:17:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-test2", + "name": "mgich-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mgich-userassignedIdentity": + {"principalId": "fe7ce57e-8668-4bc2-860c-a55b5ed3c20c", "clientId": "d272d921-c6fa-4394-889a-acb85a9de520"}, + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mgich-user2identity": + {"principalId": "d0c6a0b5-d9e2-4936-99e1-93f83c03fba5", "clientId": "246f2df7-bc14-43b6-bbab-292e9aa837c5"}}, + "principalId": "1faff273-6296-453e-8213-93e36511bafd", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2021-11-24T08:29:23+00:00", + "endpoint": "https://mgich-teststore.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": "d272d921-c6fa-4394-889a-acb85a9de520"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Enabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-11-24T08:29:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-30T12:33:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore", + "name": "Mgich-teststore", "tags": {"Tag1": "value 1"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-17T12:28:40+00:00", "endpoint": "https://mgich-teststore-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-17T12:28:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-11T13:06:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore-1", + "name": "mgich-teststore-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-14T09:20:39+00:00", "endpoint": "https://mgich-teststore-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-14T09:20:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-28T14:34:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore-3", + "name": "mgich-teststore-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-10T19:22:51+00:00", "endpoint": "https://mgich-teststore4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-10T19:22:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-03T09:10:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore4", + "name": "mgich-teststore4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-02T20:20:55+00:00", "endpoint": "https://mgich-teststsore-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-02T20:20:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-21T18:13:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststsore-3", + "name": "mgich-teststsore-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "a1c20165-034a-4ba2-8061-e0d4d16f24ae", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-20T22:42:06+00:00", + "endpoint": "https://mgmttest72er3mgxhdoinaqa.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnpau7zjt464gtz2wleqi36hu74ql74n5vvw35zhk7oaljwlxgx4oeph77eqifl5o5/providers/Microsoft.AppConfiguration/configurationStores/mgmttest72er3mgxhdoinaqa", + "name": "MgmtTest72er3mgxhdoinaqa", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "47a9f6ab-3291-480b-b56d-1e14e36050ea", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-19T19:55:12+00:00", + "endpoint": "https://mgmttestc7g3l35dzryuxxgvp4lglc5dizmw.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestc7g3l35dzryuxxgvp4lglc5dizmw", + "name": "MgmtTestc7g3l35dzryuxxgvp4lglc5dizmw", "tags": {"key": "value"}}, + {"type": "Microsoft.AppConfiguration/configurationStores", "location": "eastus", + "identity": {"type": "SystemAssigned", "principalId": "044952b4-d72c-472c-abf1-211644477cf9", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2025-07-10T04:40:17+00:00", "endpoint": "https://mgmttestdceucmwowzkwqmkq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:40:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:40:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestdceucmwowzkwqmkq", + "name": "MgmtTestdceucmwowzkwqmkq", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c635cc37-a672-4b57-bb8c-97c563ef1faa", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T05:32:22+00:00", + "endpoint": "https://mgmttestsmrvmso36npc46q2.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T05:32:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T05:32:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestsmrvmso36npc46q2", + "name": "MgmtTestsmrvmso36npc46q2", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c04393c4-b4ca-425c-ac71-d6fb8fd0e8c8", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T03:01:00+00:00", + "endpoint": "https://mgmttesttu422dgcjrdktv2i.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:01:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:01:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttesttu422dgcjrdktv2i", + "name": "MgmtTesttu422dgcjrdktv2i", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "029554f7-2d78-4e89-b35e-0def16f0607e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-12-03T08:41:56+00:00", + "endpoint": "https://mgmttesttyxczkyhxc6obdc3.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rga7cq7pqntyql7xxdl7ybrm5fu4ghzzzka7tz73vc26jiwpbnwrsibgsfkq7abl7dl/providers/Microsoft.AppConfiguration/configurationStores/mgmttesttyxczkyhxc6obdc3", + "name": "MgmtTesttyxczkyhxc6obdc3", "tags": {"Env": "Prod"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-13T21:11:18+00:00", "endpoint": "https://my-app-config-test-4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-13T21:11:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-13T21:11:18+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testresourcegroup/providers/Microsoft.AppConfiguration/configurationStores/my-app-config-test-4", + "name": "my-app-config-test-4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:47:59+00:00", "endpoint": "https://namingconventiontest5i2i.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:47:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:47:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontest5i2i", + "name": "NamingConventionTest5i2i", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:44+00:00", "endpoint": "https://namingconventiontestcmrm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestcmrm", + "name": "NamingConventionTestcmrm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:04+00:00", "endpoint": "https://namingconventiontestf6wx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdufzxonazjyfqql7zhvtnmptvqxvyghhi3piqf3w6fqffjd6elyw54aufbq4nohxe/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestf6wx", + "name": "NamingConventionTestf6wx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:14+00:00", "endpoint": "https://namingconventiontestr4z27s6inps2qahi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestr4z27s6inps2qahi", + "name": "NamingConventionTestr4z27s6inps2qahi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:57:50+00:00", "endpoint": "https://namingconventiontestzmts.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:57:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:57:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestzmts", + "name": "NamingConventionTestzmts", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:10+00:00", "endpoint": "https://newfmimport6jvm63gclqtfi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimport6jvm63gclqtfi", + "name": "NewFmImport6jvm63gclqtfi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:28+00:00", "endpoint": "https://newfmimport7breg65bpfkmk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimport7breg65bpfkmk", + "name": "NewFmImport7breg65bpfkmk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:42+00:00", "endpoint": "https://newfmimportcbirfdrxwcazblccfrcc56tr3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportcbirfdrxwcazblccfrcc56tr3", + "name": "NewFmImportcbirfdrxwcazblccfrcc56tr3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:13+00:00", "endpoint": "https://newfmimportifwskvg7yatnll65fmcw4lbvu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportifwskvg7yatnll65fmcw4lbvu", + "name": "NewFmImportifwskvg7yatnll65fmcw4lbvu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:23+00:00", "endpoint": "https://newfmimportiqle44dc5w75t.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportiqle44dc5w75t", + "name": "NewFmImportiqle44dc5w75t", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:21+00:00", "endpoint": "https://newfmimportycrjzhir3yc2jvaw5gj73xsh3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportycrjzhir3yc2jvaw5gj73xsh3", + "name": "NewFmImportycrjzhir3yc2jvaw5gj73xsh3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}, + "principalId": "2ace8798-912e-4525-8706-b2ea02068ac0", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-11-09T07:55:32+00:00", + "endpoint": "https://newstore.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-11-09T07:55:32+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-20T17:32:25+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/newstore", + "name": "NewStore", "tags": {"new ": "tag"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-07T17:33:44+00:00", "endpoint": "https://pipelinetask-teststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-07T17:33:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-07T17:33:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pipelinetask-canarytest/providers/Microsoft.AppConfiguration/configurationStores/pipelinetask-teststore", + "name": "pipelinetask-teststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-06T17:03:43+00:00", "endpoint": "https://portal-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-06T17:03:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T01:05:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test", + "name": "portal-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:40+00:00", "endpoint": "https://pubnetworknull26cngh42hn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5zneawsaijjrfwkpifdvbui3mpjvvozsommbvv2fvmzfoypa2gtwxcmwba2em7tm/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknull26cngh42hn", + "name": "PubNetworkNull26cngh42hn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:58+00:00", "endpoint": "https://pubnetworknullfgy4ldwvco.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T03:50:58+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T03:51:36+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknullfgy4ldwvco", + "name": "PubNetworkNullfgy4ldwvco", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:42:29+00:00", "endpoint": "https://pubnetworknulllk4mio7jtn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T04:42:29+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T04:43:09+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknulllk4mio7jtn", + "name": "PubNetworkNulllk4mio7jtn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:46+00:00", "endpoint": "https://pubnetworknullu2jkrdwwh23ireje5pi64g.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-03-19T19:56:46+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-19T19:57:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknullu2jkrdwwh23ireje5pi64g", + "name": "PubNetworkNullu2jkrdwwh23ireje5pi64g", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:41:50+00:00", "endpoint": "https://pubnetworktrueawirkzjx5u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T04:41:50+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T04:41:50+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktrueawirkzjx5u", + "name": "PubNetworkTrueawirkzjx5u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:18+00:00", "endpoint": "https://pubnetworktruelryl4o66fv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T03:50:18+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T03:50:18+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktruelryl4o66fv", + "name": "PubNetworkTruelryl4o66fv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:03+00:00", "endpoint": "https://pubnetworktrueqinrxqnezhqbvgsjjmoug5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-03-19T19:56:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-19T19:56:03+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktrueqinrxqnezhqbvgsjjmoug5", + "name": "PubNetworkTrueqinrxqnezhqbvgsjjmoug5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:41:57+00:00", "endpoint": "https://pubnetworktruet6yhv5rp5h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-12-03T08:41:57+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-12-03T08:41:57+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5zneawsaijjrfwkpifdvbui3mpjvvozsommbvv2fvmzfoypa2gtwxcmwba2em7tm/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktruet6yhv5rp5h", + "name": "PubNetworkTruet6yhv5rp5h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "493023af-0d46-48de-a070-eef831383228", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-11T12:40:56+00:00", + "endpoint": "https://replicastored2uyjofor3ac.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:40:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:40:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbkeprji7tmcxwyspsy2tof6gcb5zs6qod2fnn4tdtnbofbo3zzvokji5siqpbx3fv/providers/Microsoft.AppConfiguration/configurationStores/replicastored2uyjofor3ac", + "name": "ReplicaStored2uyjofor3ac", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-10T23:14:57+00:00", "endpoint": "https://rossgrambo-app-config-backup.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-10T23:14:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-10T23:35:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-app-config-backup", + "name": "rossgrambo-app-config-backup", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-20T22:16:45+00:00", "endpoint": "https://rossgrambo-app-configuration.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T22:16:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-11T00:24:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-app-configuration", + "name": "rossgrambo-app-configuration", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-08T18:53:19+00:00", "endpoint": "https://rossgrambo-flag-migration-testing.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-08T18:53:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T18:53:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-flag-migration-testing", + "name": "rossgrambo-flag-migration-testing", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-19T02:11:08+00:00", "endpoint": "https://rossgrambo-hackathon.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-19T02:11:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-19T02:11:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-hackathon/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-hackathon", + "name": "rossgrambo-hackathon", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-10T22:48:21+00:00", "endpoint": "https://samiconfigs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-10T22:48:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-04T18:58:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/samiconfigs", + "name": "samiconfigs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-01T18:44:00+00:00", "endpoint": "https://sdfsafdfdsffsf-albertofori.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-01T18:44:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-01T18:44:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/sdfsafdfdsffsf-albertofori", + "name": "sdfsafdfdsffsf-albertofori", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-04-06T23:31:37+00:00", "endpoint": "https://softdelete-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T23:31:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-15T06:08:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo", + "name": "softdelete-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/softdelete-demo-identity-2": + {"principalId": "c3b06559-ac00-409d-a3ec-183f811cfd0d", "clientId": "e6304037-2130-4a66-a0b5-0cef9e5fef38"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-06T22:35:49+00:00", + "endpoint": "https://softdelete-demo-cmk.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://softdelete-demo-keyvault.vault.azure.net/keys/key", + "identityClientId": "e6304037-2130-4a66-a0b5-0cef9e5fef38"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T22:35:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-07T23:34:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo-cmk", + "name": "softdelete-demo-cmk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/softdelete-demo-identity": + {"principalId": "d0286683-fe54-4978-b632-4879b57da219", "clientId": "e557af90-eee7-425b-9667-56b1faaaa184"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-06T23:32:42+00:00", + "endpoint": "https://softdelete-demo-purge-protection.azconfig.io", "encryption": + {"keyVaultProperties": {"keyIdentifier": "https://softdelete-demo-keyvault.vault.azure.net/keys/key", + "identityClientId": "e557af90-eee7-425b-9667-56b1faaaa184"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T23:32:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-06T23:33:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo-purge-protection", + "name": "softdelete-demo-purge-protection", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:16:25+00:00", "endpoint": "https://softdelete-retention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:16:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-14T23:15:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-retention", + "name": "softdelete-retention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:17:09+00:00", "endpoint": "https://softdelete-retention2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:17:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T05:18:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-retention2", + "name": "softdelete-retention2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:38:47+00:00", "endpoint": "https://source4w3kjzil5tkygz7f33.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:38:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:38:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source4w3kjzil5tkygz7f33", + "name": "Source4w3kjzil5tkygz7f33", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:17+00:00", "endpoint": "https://source4zg3mwqbsl6uidbigf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source4zg3mwqbsl6uidbigf", + "name": "Source4zg3mwqbsl6uidbigf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:49:30+00:00", "endpoint": "https://source5y7wpvryybmlgn255k.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:49:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:49:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source5y7wpvryybmlgn255k", + "name": "Source5y7wpvryybmlgn255k", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-29T23:28:22+00:00", "endpoint": "https://source756e3z4lxwuqzamkys.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtbmculosotxi5tvycr3ucsvrlgjvhqhtuqxxp5zjy4l3uns3dflynpwxjhqy2lti2/providers/Microsoft.AppConfiguration/configurationStores/source756e3z4lxwuqzamkys", + "name": "Source756e3z4lxwuqzamkys", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:41+00:00", "endpoint": "https://source7tkscrlyge2z2dwfnt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzsjv5ucgfl5xb3rkxbfhwzw2l663dsuksodvay6hol3lrqlffhbimwua3mxqneoxp/providers/Microsoft.AppConfiguration/configurationStores/source7tkscrlyge2z2dwfnt", + "name": "Source7tkscrlyge2z2dwfnt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:14+00:00", "endpoint": "https://sourcebonjncplltnwyxi3wxtbzajj3qudp7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcebonjncplltnwyxi3wxtbzajj3qudp7", + "name": "Sourcebonjncplltnwyxi3wxtbzajj3qudp7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:59:30+00:00", "endpoint": "https://sourceevcycu7vqqrwldss2d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:59:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:59:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceevcycu7vqqrwldss2d", + "name": "Sourceevcycu7vqqrwldss2d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:01+00:00", "endpoint": "https://sourceiawig3smul3natozz7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwyttwmni2xmbsaxrtp64sja6rdh2ocxcprrc5pwdogqijazx7f4vhljo5qfanoryn/providers/Microsoft.AppConfiguration/configurationStores/sourceiawig3smul3natozz7", + "name": "Sourceiawig3smul3natozz7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:38+00:00", "endpoint": "https://sourcesarqiu3ulixdcvfmne.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcesarqiu3ulixdcvfmne", + "name": "Sourcesarqiu3ulixdcvfmne", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:00+00:00", "endpoint": "https://sourcevsycmtag5msdxrntg4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguznozpjynfgaebftsnnrdc52h2scgoorpr6unkhktfxrcwsulo6qvsxb6b6j2jkfn/providers/Microsoft.AppConfiguration/configurationStores/sourcevsycmtag5msdxrntg4", + "name": "Sourcevsycmtag5msdxrntg4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:13+00:00", "endpoint": "https://sourcewh3zdqwqjr2ycwla34mzr57iwkd646.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewh3zdqwqjr2ycwla34mzr57iwkd646", + "name": "Sourcewh3zdqwqjr2ycwla34mzr57iwkd646", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:21+00:00", "endpoint": "https://sourcewrcreicjxj7w2yk2kl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewrcreicjxj7w2yk2kl", + "name": "Sourcewrcreicjxj7w2yk2kl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:42+00:00", "endpoint": "https://sourcewxcru6myjz22xt3cry.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewxcru6myjz22xt3cry", + "name": "Sourcewxcru6myjz22xt3cry", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://sourcexi35d6xknwvlpgfjdcjpfm4tbisikl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcexi35d6xknwvlpgfjdcjpfm4tbisikl", + "name": "Sourcexi35d6xknwvlpgfjdcjpfm4tbisikl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:04+00:00", "endpoint": "https://sourceykdeluxupgutssmtp4s2ndonnpmrfx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceykdeluxupgutssmtp4s2ndonnpmrfx", + "name": "Sourceykdeluxupgutssmtp4s2ndonnpmrfx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:27+00:00", "endpoint": "https://sourceyxduf5goewbviumeya.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceyxduf5goewbviumeya", + "name": "Sourceyxduf5goewbviumeya", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-02-14T14:44:25+00:00", "endpoint": "https://southcentralus-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-14T14:44:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-01-15T15:17:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/richardmuniu-appcfg-test/providers/Microsoft.AppConfiguration/configurationStores/southcentralus-test-store", + "name": "southcentralus-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-11T16:55:25+00:00", "endpoint": "https://spring-geo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T16:55:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-18T22:19:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-geo", + "name": "Spring-Geo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:03+00:00", "endpoint": "https://strictimporttest3vthtdkmhnlsf2jhpwqm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttest3vthtdkmhnlsf2jhpwqm", + "name": "StrictImportTest3vthtdkmhnlsf2jhpwqm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:01+00:00", "endpoint": "https://strictimporttesta5qjw7z4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiclp5jbwimqqqoxl5bbqjkggleqcwdnipdk4do7nmywdhkiwb6gnm6h3esjl6ekmb/providers/Microsoft.AppConfiguration/configurationStores/strictimporttesta5qjw7z4", + "name": "StrictImportTesta5qjw7z4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:47:05+00:00", "endpoint": "https://strictimporttestczhpt6di.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:47:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:47:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestczhpt6di", + "name": "StrictImportTestczhpt6di", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:04+00:00", "endpoint": "https://strictimporttestdwyif42s.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestdwyif42s", + "name": "StrictImportTestdwyif42s", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://strictimporttestj4kovvpa.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg43nb3b6jwngiura5rclypvjmdx62odg4tdxrdaytutt75yx2quuszpfdvp57kadz7/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestj4kovvpa", + "name": "StrictImportTestj4kovvpa", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://strictimporttestsagt6n6f6guarkkvv4ul.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestsagt6n6f6guarkkvv4ul", + "name": "StrictImportTestsagt6n6f6guarkkvv4ul", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://strictimporttestt36qwioiuroazvvivyy5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestt36qwioiuroazvvivyy5", + "name": "StrictImportTestt36qwioiuroazvvivyy5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:57:02+00:00", "endpoint": "https://strictimporttestvbzh72sl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:57:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:57:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestvbzh72sl", + "name": "StrictImportTestvbzh72sl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T20:57:06+00:00", "endpoint": "https://test-azconfig-net.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T20:57:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T20:57:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-net", + "name": "test-azconfig-net", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZDdSsQwEIXfJYhXpmnr1mJhkSKCFxbBXe96k5%2fZGmqTMJkusqXvbnQFfQUv58z5ZjhnYQ4%2b6Mm6MbJmYQ%2ftbv%2b6Yw17IwqxEWKSTg4wgaNMnmaETPtJxFlFjTaQ9S6KujaVVPkNr8EYvgHQXGm45VWpi0LVlVLXtQjoj9YARtFZjT76A2VtCPfeHewwo%2fw6JfTfaUceId7JYPkxcWm%2fLfNyw9OjvLi8iKMNez%2bC2xJE4vJ0hrkDYuvVb6pn9%2bjfTcqWRIlTOwwIgyQw33BK2r507OzvJI6ASVr6nyJ61vT%2fuoqerWz9BA%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '110916' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:18:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 3bd986b2-0261-4deb-86f7-0832cfeaf6e1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DF8FC692458146828D6A940DC9A51602 Ref B: MAA201060516035 Ref C: 2025-08-15T03:18:51Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label --prefix + -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZDdSsQwEIXfJYhXpmnr1mJhkSKCFxbBXe96k5/ZGmqTMJkusqXvbnQFfQUv58z5ZjhnYQ4%2B6Mm6MbJmYQ/tbv%2B6Yw17IwqxEWKSTg4wgaNMnmaETPtJxFlFjTaQ9S6KujaVVPkNr8EYvgHQXGm45VWpi0LVlVLXtQjoj9YARtFZjT76A2VtCPfeHewwo/w6JfTfaUceId7JYPkxcWm/LfNyw9OjvLi8iKMNez%2BC2xJE4vJ0hrkDYuvVb6pn9%2BjfTcqWRIlTOwwIgyQw33BK2r507OzvJI6ASVr6nyJ61vT/uoqerWz9BA%3D%3D + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T20:57:06+00:00", "endpoint": "https://test-azconfig-net-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T20:57:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T20:57:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-net-provider", + "name": "test-azconfig-net-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T21:01:29+00:00", "endpoint": "https://test-azconfig-python.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T21:01:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T21:01:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-python", + "name": "test-azconfig-python", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T21:01:29+00:00", "endpoint": "https://test-azconfig-python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T21:01:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T21:01:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-python-provider", + "name": "test-azconfig-python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-03-18T03:11:21+00:00", "endpoint": "https://test-deletion.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-03-18T03:11:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-03-18T03:11:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/richardmuniu-appcfg-test/providers/Microsoft.AppConfiguration/configurationStores/test-deletion", + "name": "test-deletion", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-09T22:36:24+00:00", "endpoint": "https://test-notification.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-09T22:36:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-09T23:17:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/test-notification", + "name": "test-notification", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-28T11:18:48+00:00", "endpoint": "https://test-revision-retention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-28T11:18:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T14:41:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/test-revision-retention", + "name": "test-revision-retention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-10T21:04:55+00:00", "endpoint": "https://test-template.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-10T21:04:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-10T21:04:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/test-template", + "name": "test-template", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-27T17:01:21+00:00", "endpoint": "https://testapp-1001.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-09-27T17:01:21+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-09-27T17:01:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-1001", + "name": "testapp-1001", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-27T16:59:45+00:00", "endpoint": "https://testapp-8778.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-8778/privateEndpointConnections/myconnection", + "name": "myconnection", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-AppConfiguration-6086/providers/Microsoft.Network/privateEndpoints/endpointxyz7285"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-27T16:59:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-27T16:59:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-8778", + "name": "testapp-8778", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T09:32:10+00:00", "endpoint": "https://testbug.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T09:32:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T13:16:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testbug", + "name": "testBug", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-13T17:58:05+00:00", "endpoint": "https://testcopilot.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-13T17:58:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:49:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testcopilot", + "name": "testCopilot", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-15T06:19:24+00:00", "endpoint": "https://testdev.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 172800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-15T06:19:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-25T08:00:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testdev", + "name": "testdev", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-25T21:04:05+00:00", "endpoint": "https://testdevsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-25T21:04:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-25T21:04:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/testdevsku", + "name": "testdevsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-23T07:57:12+00:00", "endpoint": "https://testrevisionretention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-23T07:57:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-23T07:58:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testrevisionretention", + "name": "testrevisionretention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-24T22:30:44+00:00", "endpoint": "https://teststestestestes.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-24T22:30:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-24T22:30:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-hackathon/providers/Microsoft.AppConfiguration/configurationStores/teststestestestes", + "name": "teststestestestes", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T07:43:13+00:00", "endpoint": "https://testtkeyvalueretention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T07:43:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:51:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testtkeyvalueretention", + "name": "testtkeyvalueretention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T07:29:41+00:00", "endpoint": "https://testuhyvu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 691200, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T07:29:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:45:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testuhyvu", + "name": "testuhyvu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-03-13T19:25:01+00:00", "endpoint": "https://webscoutscantarget.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-03-13T19:25:01+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-03-13T19:25:01+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/webscoutscantarget", + "name": "WebScoutScanTarget", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:21:32+00:00", "endpoint": "https://xuxu-sd-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:21:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-11T07:03:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-1", + "name": "xuxu-sd-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T21:37:20+00:00", "endpoint": "https://xuxu-sd-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T21:37:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T21:37:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-2", + "name": "xuxu-sd-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T21:41:29+00:00", "endpoint": "https://xuxu-sd-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T21:41:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T21:42:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-3", + "name": "xuxu-sd-3", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZDdSsQwEIXfJYhXpmm7W4OFRYoIXlgEu971Jj%2bzNdQmYZIuxdJ3N%2f6AvoKXc%2bacGb6zEgtLfDR2DKReyX3THV86UpPXGH2oGZuEFQNMYGMm3meETLmJhVkGhcZH42xgnOtKyPyactCa7gEUlQpuaFWqopC8knLHmUd3NhowsNYodMGdYtZ4f%2bfsyQwzis9TTP2duugQwq3whp5TLu0PZV7uaXqUF5cXYTT%2b6Eawh2VeZho03ZHt6pfmyT64N52YkihwaoYBYRAR9FcoETbPLfn2twJHwCSt%2fU8BPan7f1lBTzayfQA%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '22507' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:18:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - f75e3885-508b-4e35-a225-1ac7c3ff6cff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BA1B594F8FEF4244BAB998B3437F9520 Ref B: MAA201060513039 Ref C: 2025-08-15T03:18:54Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label --prefix + -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZDdSsQwEIXfJYhXpmm7W4OFRYoIXlgEu971Jj%2BzNdQmYZIuxdJ3N/6AvoKXc%2BacGb6zEgtLfDR2DKReyX3THV86UpPXGH2oGZuEFQNMYGMm3meETLmJhVkGhcZH42xgnOtKyPyactCa7gEUlQpuaFWqopC8knLHmUd3NhowsNYodMGdYtZ4f%2BfsyQwzis9TTP2duugQwq3whp5TLu0PZV7uaXqUF5cXYTT%2B6Eawh2VeZho03ZHt6pfmyT64N52YkihwaoYBYRAR9FcoETbPLfn2twJHwCSt/U8BPan7f1lBTzayfQA%3D + response: + body: + string: '{"value": []}' + headers: + cache-control: + - no-cache + content-length: + - '13' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:18:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - ed9fe2cb-b54c-41d4-85c7-3c21f2e9e2cf + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: DAED3754BFBE43D7B6BA764FCFAE5575 Ref B: MAA201060515025 Ref C: 2025-08-15T03:18:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label --prefix + -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/ConfigMapImportTest000002/listKeys?api-version=2024-06-01 + response: + body: + string: '{"value": [{"id": "sanitized_id1", "name": "Primary", "value": "sanitized_secret1", + "connectionString": "Endpoint=https://configmapimporttest5eotn.azconfig.io;Id=sanitized_id1;Secret=sanitized_secret1", + "lastModified": "2025-08-15T03:11:28+00:00", "readOnly": false}, {"id": "sanitized_id2", + "name": "Secondary", "value": "sanitized_secret2", "connectionString": "Endpoint=https://configmapimporttest5eotn.azconfig.io;Id=sanitized_id2;Secret=sanitized_secret2", + "lastModified": "2025-08-15T03:11:28+00:00", "readOnly": false}, {"id": "sanitized_id3", + "name": "Primary Read Only", "value": "sanitized_secret3", "connectionString": + "Endpoint=https://configmapimporttest5eotn.azconfig.io;Id=sanitized_id3;Secret=sanitized_secret3", + "lastModified": "2025-08-15T03:11:28+00:00", "readOnly": true}, {"id": "sanitized_id4", + "name": "Secondary Read Only", "value": "sanitized_secret4", "connectionString": + "Endpoint=https://configmapimporttest5eotn.azconfig.io;Id=sanitized_id4;Secret=sanitized_secret4", + "lastModified": "2025-08-15T03:11:28+00:00", "readOnly": true}], "nextLink": + null}' + headers: + cache-control: + - no-cache + content-length: + - '1079' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:18:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/f75252f7-d389-413b-985d-2f5ea6a191db + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 041F73C83C3C4AF39C55E74AC66F4A8C Ref B: MAA201060516025 Ref C: 2025-08-15T03:18:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - --output + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003?api-version=2025-05-01 + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003", + "location": "westus2", "name": "ImportAKSTest000003", "tags": {"AzSecPackAutoConfigReady": + "true", "EnableAzSecPackIdentityPolicy": "true"}, "type": "Microsoft.ContainerService/ManagedClusters", + "properties": {"provisioningState": "Succeeded", "powerState": {"code": "Running"}, + "kubernetesVersion": "1.32", "currentKubernetesVersion": "1.32.6", "dnsPrefix": + "ImportAKST-cli-local-test-r-77d5ab", "fqdn": "importakst-cli-local-test-r-77d5ab-d98oj67e.hcp.westus2.azmk8s.io", + "azurePortalFQDN": "importakst-cli-local-test-r-77d5ab-d98oj67e.portal.hcp.westus2.azmk8s.io", + "agentPoolProfiles": [{"name": "nodepool1", "count": 1, "vmSize": "Standard_D8lds_v5", + "osDiskSizeGB": 300, "osDiskType": "Ephemeral", "kubeletDiskType": "OS", "workloadRuntime": + "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/virtualNetworks/junbchen-test-dev-vnet/subnets/default", + "maxPods": 250, "type": "VirtualMachineScaleSets", "enableAutoScaling": false, + "scaleDownMode": "Delete", "provisioningState": "Succeeded", "powerState": + {"code": "Running"}, "orchestratorVersion": "1.32", "currentOrchestratorVersion": + "1.32.6", "enableNodePublicIP": false, "mode": "System", "enableEncryptionAtHost": + false, "enableUltraSSD": false, "osType": "Linux", "osSKU": "Ubuntu", "nodeImageVersion": + "AKSUbuntu-2204gen2containerd-202507.21.0", "upgradeSettings": {"maxSurge": + "10%", "maxUnavailable": "0"}, "enableFIPS": false, "networkProfile": {}, + "securityProfile": {"enableVTPM": false, "enableSecureBoot": false}}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDrBgKkL4uf19PGAGvXYPyTPhpWw/py9d1B94wzHPri98pBTicWdrdocc9eEKSCAcmOAWgslD5zjEkYViq4P9l9e0H6hbM0FlA3iYDnoC5B0r8PEh4GJd3Yem0OTtyPW7oJUZHWc28qqHi9HA2hBPG9YwurtCzLJsWC1RfNZymYJK872u2a6youT2iFIZZRlSz/GemIHlUKoYJ+QG7fe3mVDuWpd3LRl5NjRHdubRN5mLBakfjhT/IjIo8CtNKu/giHpgNM3TDpSJ3xdPKBqT7fypCkvWocgcJ9DziI1FHo6W/ATUC3qkXOisQCT3cbC+9uGURhtaMTI3GYCI+NObi3"}]}}, + "servicePrincipalProfile": {"clientId": "msi"}, "nodeResourceGroup": "MC_clitest.rg000001_ImportAKSTest000003_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": + {"networkPlugin": "azure", "networkPluginMode": "overlay", "networkPolicy": + "none", "networkDataplane": "azure", "loadBalancerSku": "standard", "loadBalancerProfile": + {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/publicIPAddresses/junbchen-test-dev-pip"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/publicIPAddresses/junbchen-test-dev-pip"}], + "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30, "backendPoolType": + "nodeIPConfiguration"}, "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "podCidrs": ["10.244.0.0/16"], + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "maxAgentPools": + 100, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest.rg000001_ImportAKSTest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ImportAKSTest000003-agentpool", + "clientId": "0b42238a-1f4a-4d5a-9c49-c7e8df9bd644", "objectId": "38097874-3592-43b6-af85-c56e95bf9dc3"}}, + "autoUpgradeProfile": {"nodeOSUpgradeChannel": "NodeImage"}, "disableLocalAccounts": + false, "securityProfile": {"imageCleaner": {"enabled": true, "intervalHours": + 168}}, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}, "oidcIssuerProfile": + {"enabled": false}, "workloadAutoScalerProfile": {}, "resourceUID": "689ea5988ed2dd0001b48bf3", + "metricsProfile": {"costAnalysis": {"enabled": false}}, "nodeProvisioningProfile": + {"mode": "Manual", "defaultNodePools": "Auto"}, "bootstrapProfile": {"artifactSource": + "Direct"}}, "identity": {"type": "SystemAssigned", "principalId": "9138b8b1-614d-4c3a-8a79-001ab2bbe55d", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "sku": {"name": "Base", + "tier": "Free"}}' + headers: + cache-control: + - no-cache + content-length: + - '4429' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:19:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B7071A2ED2C0487A839B8C754926DE33 Ref B: MAA201060513037 Ref C: 2025-08-15T03:19:00Z' + status: + code: 200 + message: OK +- request: + body: '{"command": "kubectl get configmap test-config -n default -o json", "context": + ""}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + Content-Length: + - '82' + Content-Type: + - application/json + ParameterSetName: + - --output + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003/runCommand?api-version=2025-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Aug 2025 03:19:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedclusters/ImportAKSTest000003/commandResults/beb0927205124457838301a5a7c53d98?api-version=2025-05-01&t=638908247433747636&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=gI_iZk0mokRyJq8V97T1f9qwyotUn8t_QG6IN081MoraOUdVCGJN9d5WyFK9jISikL1g0jNffP-DPnWGq_5jQX25KaAnL6nRbqx_NjgQzr4ELkdD4V5ljxnai1_j1znxoqm3OoBiNl60WBrccArPoza-gUnpfvKTpwkaYIQNVEX4qQn3Gm0bvU-r-t84glcqqH9o44K5rlnyV0E2OdEsbTcQopVzoGd_AeBHrD2Xry0IFdH6rZ56Q5Nqc_-RAQQI2pEPp8njNpSY3AfmJUFrSmXwFyJVh91BkdLgwt347GnIwORnr8D8G1nekUwN-VROZopGSDS0oDi3BpbnN4xtaQ&h=ki2Tw48bj0ICoWglc2QpbYFU8yYmPS5ve5iw7_OPhvI + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/4940c2ff-8579-4b0f-91e4-58cb09423054 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: C33BEBAF028F4E1B83F4664F144DD5E2 Ref B: MAA201060513033 Ref C: 2025-08-15T03:19:02Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - --output + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedclusters/ImportAKSTest000003/commandResults/beb0927205124457838301a5a7c53d98?api-version=2025-05-01&t=638908247433747636&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=gI_iZk0mokRyJq8V97T1f9qwyotUn8t_QG6IN081MoraOUdVCGJN9d5WyFK9jISikL1g0jNffP-DPnWGq_5jQX25KaAnL6nRbqx_NjgQzr4ELkdD4V5ljxnai1_j1znxoqm3OoBiNl60WBrccArPoza-gUnpfvKTpwkaYIQNVEX4qQn3Gm0bvU-r-t84glcqqH9o44K5rlnyV0E2OdEsbTcQopVzoGd_AeBHrD2Xry0IFdH6rZ56Q5Nqc_-RAQQI2pEPp8njNpSY3AfmJUFrSmXwFyJVh91BkdLgwt347GnIwORnr8D8G1nekUwN-VROZopGSDS0oDi3BpbnN4xtaQ&h=ki2Tw48bj0ICoWglc2QpbYFU8yYmPS5ve5iw7_OPhvI + response: + body: + string: '{"id": "beb0927205124457838301a5a7c53d98", "properties": {"provisioningState": + "Succeeded", "exitCode": 0, "startedAt": "2025-08-15T03:19:03Z", "finishedAt": + "2025-08-15T03:19:03Z", "logs": "{\n \"apiVersion\": \"v1\",\n \"data\": + {\n \"app.name\": \"testapp\",\n \"database.host\": \"localhost\",\n \"database.port\": + \"5432\"\n },\n \"kind\": \"ConfigMap\",\n \"metadata\": {\n \"creationTimestamp\": + \"2025-08-15T03:18:22Z\",\n \"name\": \"test-config\",\n \"namespace\": + \"default\",\n \"resourceVersion\": \"2098\",\n \"uid\": \"e0dc2c3b-6d91-49fd-a291-540f87eb3ba5\"\n }\n}\n"}}' + headers: + cache-control: + - no-cache + content-length: + - '658' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:19:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/9b0f6b4b-e642-4c53-a5d0-e519671b3a33 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: B3F6D82E806644BDA15C72FB4DB7EFB6 Ref B: MAA201060516053 Ref C: 2025-08-15T03:19:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/vnd.microsoft.appconfig.kvset+json, application/problem+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI.APPCONFIG/2.75.0 azsdk-python-appconfiguration/unknown Python/3.12.10 + (Windows-11-10.0.26100-SP0) + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Aug, 15 2025 03:19:05.738744 GMT + method: GET + uri: https://configmapimporttest5eotn.azconfig.io/kv?key=test%2F%2A&label=ConfigMapImport&api-version=2023-11-01&$Select= + response: + body: + string: '{"etag":"00wWELzclWef22f82qcUDI7FbJweVOoKWZDA_JoUeD0","items":[]}' + headers: + access-control-allow-origin: + - '*' + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:06 GMT + etag: + - '"00wWELzclWef22f82qcUDI7FbJweVOoKWZDA_JoUeD0"' + strict-transport-security: + - max-age=31536000; includeSubDomains + sync-token: + - zAJw6V16=MjoxNyMzMzI3NDYwNQ==;sn=33274605 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"key": "test/app.name", "label": "ConfigMapImport", "value": "testapp", + "locked": false}' + headers: + Accept: + - application/vnd.microsoft.appconfig.kv+json, application/problem+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + Sync-Token: + - zAJw6V16=MjoxNyMzMzI3NDYwNQ== + User-Agent: + - AZURECLI.APPCONFIG/2.75.0 azsdk-python-appconfiguration/unknown Python/3.12.10 + (Windows-11-10.0.26100-SP0) + x-ms-content-sha256: + - /RPLYhRzBDwdK1Ul3ndf3Rt5mm7t7gy/8LrwcPFSwSs= + x-ms-date: + - Aug, 15 2025 03:19:06.581378 GMT + method: PUT + uri: https://configmapimporttest5eotn.azconfig.io/kv/test%2Fapp.name?label=ConfigMapImport&api-version=2023-11-01 + response: + body: + string: '{"etag":"tDYO5MS_7tKvHw98o396kVttFzUGl4_0HO4ZAb3N1oo","key":"test/app.name","label":"ConfigMapImport","content_type":null,"value":"testapp","tags":{},"locked":false,"last_modified":"2025-08-15T03:19:07+00:00"}' + headers: + access-control-allow-origin: + - '*' + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:07 GMT + etag: + - '"tDYO5MS_7tKvHw98o396kVttFzUGl4_0HO4ZAb3N1oo"' + last-modified: + - Fri, 15 Aug 2025 03:19:07 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + sync-token: + - zAJw6V16=MjoxNyMzMzI3NDYwNg==;sn=33274606 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"key": "test/database.host", "label": "ConfigMapImport", "value": "localhost", + "locked": false}' + headers: + Accept: + - application/vnd.microsoft.appconfig.kv+json, application/problem+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '96' + Content-Type: + - application/json + Sync-Token: + - zAJw6V16=MjoxNyMzMzI3NDYwNg== + User-Agent: + - AZURECLI.APPCONFIG/2.75.0 azsdk-python-appconfiguration/unknown Python/3.12.10 + (Windows-11-10.0.26100-SP0) + x-ms-content-sha256: + - wuyk6/A8TIpRGXJtQBOcutT4EAUqHNjGjSF7iPq8wZ0= + x-ms-date: + - Aug, 15 2025 03:19:07.318247 GMT + method: PUT + uri: https://configmapimporttest5eotn.azconfig.io/kv/test%2Fdatabase.host?label=ConfigMapImport&api-version=2023-11-01 + response: + body: + string: '{"etag":"RBbCgYT0lBdkIEfeMSjsXB8SklWtJQHHeuGcCZ3XvJY","key":"test/database.host","label":"ConfigMapImport","content_type":null,"value":"localhost","tags":{},"locked":false,"last_modified":"2025-08-15T03:19:07+00:00"}' + headers: + access-control-allow-origin: + - '*' + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:07 GMT + etag: + - '"RBbCgYT0lBdkIEfeMSjsXB8SklWtJQHHeuGcCZ3XvJY"' + last-modified: + - Fri, 15 Aug 2025 03:19:07 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + sync-token: + - zAJw6V16=MjoxNyMzMzI3NDYwNw==;sn=33274607 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"key": "test/database.port", "label": "ConfigMapImport", "value": "5432", + "locked": false}' + headers: + Accept: + - application/vnd.microsoft.appconfig.kv+json, application/problem+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '91' + Content-Type: + - application/json + Sync-Token: + - zAJw6V16=MjoxNyMzMzI3NDYwNw== + User-Agent: + - AZURECLI.APPCONFIG/2.75.0 azsdk-python-appconfiguration/unknown Python/3.12.10 + (Windows-11-10.0.26100-SP0) + x-ms-content-sha256: + - Xiu1+DiA7WYoXljRU/BK9gEcAuxVhKL20nvX43/ruww= + x-ms-date: + - Aug, 15 2025 03:19:08.063352 GMT + method: PUT + uri: https://configmapimporttest5eotn.azconfig.io/kv/test%2Fdatabase.port?label=ConfigMapImport&api-version=2023-11-01 + response: + body: + string: '{"etag":"fG1mzvfpjnLM2A6_rpCJe-DiO1o_YCUep2X2oQ4Vero","key":"test/database.port","label":"ConfigMapImport","content_type":null,"value":"5432","tags":{},"locked":false,"last_modified":"2025-08-15T03:19:08+00:00"}' + headers: + access-control-allow-origin: + - '*' + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:08 GMT + etag: + - '"fG1mzvfpjnLM2A6_rpCJe-DiO1o_YCUep2X2oQ4Vero"' + last-modified: + - Fri, 15 Aug 2025 03:19:08 GMT + strict-transport-security: + - max-age=31536000; includeSubDomains + sync-token: + - zAJw6V16=MjoxNyMzMzI3NDYwOA==;sn=33274608 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv list + Connection: + - keep-alive + ParameterSetName: + - -n --label + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01 + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-06-26T18:04:42+00:00", "endpoint": "https://abc12332112.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-06-26T18:04:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-28T11:10:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/abc12332112", + "name": "abc12332112", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T17:30:35+00:00", "endpoint": "https://albertofori-notification-wcus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-10T17:30:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-10T18:29:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-wcus", + "name": "albertofori-notification-wcus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/spring-id-test": + {"principalId": "bbc27095-cfb5-4239-b4f1-b94dc4f76a33", "clientId": "b281689e-4907-4519-a49d-345edbc61f9e"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-06-13T17:35:52+00:00", + "endpoint": "https://mametcal-app-config.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": 604800, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "free"}, "systemData": {"createdBy": null, "createdByType": + null, "createdAt": "2019-06-13T17:35:52+00:00", "lastModifiedBy": "test@example.com", + "lastModifiedByType": "User", "lastModifiedAt": "2024-12-30T21:03:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/mametcal-app-config", + "name": "mametcal-app-config", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-08-06T20:23:35+00:00", "endpoint": "https://secondsource.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-08-06T20:23:35+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-01-31T22:47:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/secondsource", + "name": "SecondSource", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "identity": {"type": "SystemAssigned", "userAssignedIdentities": + {}, "principalId": "72bee6eb-3e9f-41e8-a903-8d7d2b988b1c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-01-06T17:54:47+00:00", + "endpoint": "https://avgupta-appc-cus.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://keyvault-importexport.vault.azure.net/keys/TestCMK", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-01-06T17:54:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-08T13:30:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-cus", + "name": "avgupta-appc-cus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-02-12T21:35:04+00:00", "endpoint": "https://eventgridteststonexuxu1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-12T21:35:04+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-12T21:35:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/eventgridteststonexuxu1", + "name": "EventGridTestStoneXuxu1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-05-31T18:07:37+00:00", "endpoint": "https://jimmyca-cus-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-05-31T18:07:37+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2022-10-13T16:53:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cus-appconfig", + "name": "jimmyca-cus-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-12T08:13:43+00:00", "endpoint": "https://0000-junbchen-pe-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/0000-junbchen-pe-test/privateEndpointConnections/0000-junbchen-pe", + "name": "0000-junbchen-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/0000-junbchen-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-12T08:13:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-12T08:34:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/0000-junbchen-pe-test", + "name": "0000-junbchen-pe-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-25T22:56:46+00:00", "endpoint": "https://albertofori-dataproxy-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Enabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-25T22:56:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T01:00:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-dataproxy-test", + "name": "albertofori-dataproxy-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-08-10T22:30:45+00:00", "endpoint": "https://albertofori-free-test1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-08-10T22:30:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-10T02:00:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-free-test1", + "name": "albertofori-free-test1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T18:47:12+00:00", "endpoint": "https://albertofori-sas-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T18:47:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-05T23:32:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sas-test", + "name": "albertofori-sas-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:26:11+00:00", "endpoint": "https://albertofori-sku-test-free.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-28T07:26:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T09:41:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free", + "name": "albertofori-sku-test-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:27:05+00:00", "endpoint": "https://albertofori-sku-test-free2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2023-11-28T07:27:05+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-11-28T07:27:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free2", + "name": "albertofori-sku-test-free2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:29:16+00:00", "endpoint": "https://albertofori-sku-test-free3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2023-11-28T07:29:16+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-11-28T07:29:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free3", + "name": "albertofori-sku-test-free3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-10T09:30:13+00:00", "endpoint": "https://albertofori-test-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-10T09:30:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-12T18:51:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-test", + "name": "albertofori-test-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-23T18:52:42+00:00", "endpoint": "https://albertoforitestanino.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-23T18:52:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-23T18:52:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforitestanino", + "name": "albertoforitestanino", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-01-06T23:44:03+00:00", "endpoint": "https://appconfig-spring-sample.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-01-06T23:44:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-01-06T23:44:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfig-spring-sample", + "name": "appconfig-spring-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "e656642d-deb0-4d1a-abc0-d8e85268cecf", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-19T02:05:10+00:00", + "endpoint": "https://appconfigaitzstf3sdnjs.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2332800, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": null, + "createdByType": null, "createdAt": "2024-11-19T02:05:10+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-05T19:12:11+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/appconfigaitzstf3sdnjs", + "name": "appconfigaitzstf3sdnjs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-07T19:32:28+00:00", "endpoint": "https://appconfigdemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-07T19:32:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-07T19:32:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigdemo", + "name": "AppConfigDemo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:47:53+00:00", "endpoint": "https://appconfigstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:47:53+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-01T09:39:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigstore", + "name": "AppConfigStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-07T19:09:14+00:00", "endpoint": "https://appconfigteststorexuxu1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-07T19:09:14+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-07T19:09:14+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/appconfigteststorexuxu1", + "name": "AppConfigTestStoreXuxu1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:47:27+00:00", "endpoint": "https://appconfigurationstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:47:27+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-01T09:43:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigurationstore", + "name": "AppConfigurationStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "765e8797-defc-4cbc-987a-72eb3dc71d5c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-01-04T00:25:57+00:00", + "endpoint": "https://avgupta-appc-wus.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-01-04T00:25:57+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-01-05T00:33:42+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus", + "name": "avgupta-appc-wus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T18:18:09+00:00", "endpoint": "https://avgupta-appc-wus-free.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2024-10-23T18:18:09+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-10-23T18:18:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus-free", + "name": "avgupta-appc-wus-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-05-18T20:18:01+00:00", "endpoint": "https://avgupta-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-05-18T20:18:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-01T17:37:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appconfig", + "name": "avgupta-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-10-03T16:36:18+00:00", "endpoint": "https://avgupta-ru-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-03T16:36:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-10-03T16:36:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-ru-test", + "name": "avgupta-ru-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2018-11-30T04:05:08+00:00", "endpoint": "https://configbuilderdemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2018-11-30T04:05:08+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-01T04:54:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigloadtestrg/providers/Microsoft.AppConfiguration/configurationStores/configbuilderdemo", + "name": "ConfigBuilderDemo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-09-23T17:46:44+00:00", "endpoint": "https://configprovider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 864000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2020-09-23T17:46:44+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-08-07T16:42:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-configprovider-rg/providers/Microsoft.AppConfiguration/configurationStores/configprovider", + "name": "configprovider", "tags": {"tagcli": "valcli", "tag-portal": "val-portal"}}, + {"type": "Microsoft.AppConfiguration/configurationStores", "location": "westus", + "properties": {"provisioningState": "Succeeded", "creationDate": "2021-10-05T20:53:37+00:00", + "endpoint": "https://configprovider-free.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": 604800, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "free"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2021-10-05T20:53:37+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-03-04T19:11:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-configprovider-rg/providers/Microsoft.AppConfiguration/configurationStores/configprovider-free", + "name": "configprovider-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2019-02-25T18:52:34+00:00", "endpoint": "https://configstoredemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-02-25T18:52:34+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-21T23:58:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azcfg-demo/providers/Microsoft.AppConfiguration/configurationStores/configstoredemo", + "name": "ConfigStoreDemo", "tags": {"Owner": "Zhenlan"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-12-01T10:43:03+00:00", + "endpoint": "https://cwanjauteststore.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", "identityClientId": + "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": null, + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-12-01T10:43:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:35:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjauteststore", + "name": "cwanjauTestStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-17T18:06:57+00:00", "endpoint": "https://demos.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": [], "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-17T18:06:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-04T21:25:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/demos", + "name": "demos", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-01-08T21:18:22+00:00", "endpoint": "https://dotnetprovider-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-01-08T21:18:22+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-01-08T21:18:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/dotnetprovider-test", + "name": "dotnetprovider-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:43:44+00:00", "endpoint": "https://example.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:43:44+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-06T16:56:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/example", + "name": "example", "tags": {"222": "222", "test": "123"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-12T08:30:46+00:00", "endpoint": "https://garywang-create.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-12T08:30:46+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-12T08:30:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-create", + "name": "garywang-create", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2018-08-21T07:04:28+00:00", "endpoint": "https://garywang-demo-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2018-08-21T07:04:28+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2018-11-13T21:18:47+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-demo-store", + "name": "garywang-demo-store", "tags": {"123": "456", "789": "000"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "westus", "identity": + {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jimmyca-wus/providers/microsoft.managedidentity/userassignedidentities/jimmyca-mi-4": + {"principalId": "949c3968-a2e3-4bdc-b9fe-920f4d5a183f", "clientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, + "principalId": "763db0ea-df44-4d4c-ac02-c8e5f44b126a", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-02-20T19:44:43+00:00", + "endpoint": "https://jimmyca-wus-appconfig.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jimmyca-demo.vault.azure.net/keys/jimmyca-demo-key", + "identityClientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-02-20T19:44:43+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-03-27T22:06:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-wus-appconfig", + "name": "jimmyca-wus-appconfig", "tags": {"abc": "def", "ghi": "jkl"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "westus", "identity": + {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, + "principalId": "d92f5b75-4c8c-458f-a50a-7d2b587bec2b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-04-07T23:44:00+00:00", + "endpoint": "https://jiyu-createtest6.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + null}}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-07T23:44:00+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T23:14:41+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-createtest6", + "name": "jiyu-createtest6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-17T19:32:40+00:00", "endpoint": "https://jiyu-devsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-17T19:32:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-21T17:59:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-devsku", + "name": "jiyu-devsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jiyu/providers/microsoft.managedidentity/userassignedidentities/jiyu-useridentity-1": + {"principalId": "634a239c-d987-4892-83a4-5a4c987e3606", "clientId": "2e0d90a5-7909-4831-8508-31cbc111cb52"}}, + "principalId": "25fe3433-a7bd-4643-add3-d4f5ccfc68ea", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-11-07T18:45:10+00:00", + "endpoint": "https://jiyu-store.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "publicNetworkAccess": "Enabled", + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-11-07T18:45:10+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-21T21:53:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-store", + "name": "JIYU-stORE", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-01T18:44:56+00:00", "endpoint": "https://jiyu-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-01T18:44:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-01T18:44:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test", + "name": "jiyu-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-08T22:49:58+00:00", "endpoint": "https://jiyu-test-create.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-08T22:49:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-08T22:49:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test-create", + "name": "jiyu-test-create", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-03T00:48:41+00:00", "endpoint": "https://jiyu-test1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-03T00:48:41+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-08-06T17:01:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test1", + "name": "jiyu-test1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-14T17:14:39+00:00", "endpoint": "https://jiyu-testcreate.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-14T17:14:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-21T21:52:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-testcreate", + "name": "jiyu-testcreate", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "None", "userAssignedIdentities": + {}}, "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-14T19:22:00+00:00", + "endpoint": "https://jiyu-testresource.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://henlitestcmk.vault.azure.net/keys/henlicmk", "identityClientId": + "0147171d-f0b9-4c5a-ae56-c2bc638e073b"}}, "privateEndpointConnections": null, + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-14T19:22:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-14T19:22:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-testresource", + "name": "jiyu-testresource", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "da9f840f-a366-4525-ae77-7142a794cf49", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-03-16T23:19:49+00:00", + "endpoint": "https://jiyu-teststore.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-16T23:19:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-29T21:25:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore", + "name": "jiyu-teststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-05T19:32:08+00:00", "endpoint": "https://jiyu-wusstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-wusstore/privateEndpointConnections/jiyupetest_756dffb7-fc14-48e7-a7de-d4c8a36bb01d", + "name": "jiyupetest_756dffb7-fc14-48e7-a7de-d4c8a36bb01d", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyupetest"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Enabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-05T19:32:08+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-04-11T21:44:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-wusstore", + "name": "jiyu-wusstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-11-18T20:34:11+00:00", "endpoint": "https://jlinares-wus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-18T20:34:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-11-18T20:34:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-wus", + "name": "jlinares-wus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-10T07:33:47+00:00", "endpoint": "https://junbchen-rbac-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-10T07:33:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-10T07:33:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchen-rbac-test", + "name": "junbchen-rbac-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-02-10T11:56:31+00:00", "endpoint": "https://junbchenconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-02-10T11:56:31+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-03-20T06:09:56+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig", + "name": "junbchenConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.ManagedIdentity/userAssignedIdentities/junbchen-identity-cmk": + {"principalId": "e790947e-9f1d-4382-af0f-eec738f38956", "clientId": "43310a7e-10ee-4a8d-95d5-512587f292b9"}}, + "principalId": "8ad03e71-e705-4886-b115-6e91de3e349f", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-09-21T07:06:42+00:00", + "endpoint": "https://junbchenconfig-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-test/privateEndpointConnections/junbchen-my-pe", + "name": "junbchen-my-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/junbchen-my-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-21T07:06:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-08T02:57:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-test", + "name": "junbchenconfig-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-23T01:44:20+00:00", "endpoint": "https://notification-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-23T01:44:20+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2021-05-24T20:06:29+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/notification-test", + "name": "notification-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-12-01T23:02:40+00:00", "endpoint": "https://replicatest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-12-01T23:02:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T23:13:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/replicatest", + "name": "replicatest", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:46:09+00:00", "endpoint": "https://sample.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:46:09+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-25T18:46:09+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/sample", + "name": "sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-02-14T05:17:40+00:00", "endpoint": "https://scrum.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-02-14T05:17:40+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-02-14T05:17:40+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/scrum", + "name": "scrum", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-16T23:42:04+00:00", "endpoint": "https://sync-integration-source.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-16T23:42:04+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-16T23:42:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-source", + "name": "sync-integration-source", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-16T23:43:37+00:00", "endpoint": "https://sync-integration-target.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-16T23:43:37+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-16T23:43:37+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-target", + "name": "sync-integration-target", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-03-05T00:57:52+00:00", "endpoint": "https://teststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2021-03-05T00:57:52+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-05-10T06:06:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vendorteamtestrg/providers/Microsoft.AppConfiguration/configurationStores/teststore1", + "name": "TestStore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-10T18:34:03+00:00", "endpoint": "https://tolani-manifest-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-10T18:34:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-10T18:34:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-manifest-test", + "name": "tolani-manifest-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-23T20:30:55+00:00", "endpoint": "https://xuxu-dev-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-23T20:30:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-23T20:30:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-dev-test", + "name": "xuxu-dev-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T23:20:19+00:00", "endpoint": "https://xuxu-softdelete-2025-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T23:20:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-01T05:59:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-softdelete-2025-3", + "name": "xuxu-softdelete-2025-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-22T21:58:58+00:00", "endpoint": "https://xuxutest2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-22T21:58:58+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-09-01T00:01:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxutest2", + "name": "xuxutest2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-01-23T22:43:48+00:00", "endpoint": "https://xuxuteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-01-23T22:43:48+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-01-23T22:43:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuteststore", + "name": "xuxuteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T12:14:02+00:00", "endpoint": "https://202503071050aadstorelbub34eijpr7lode.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:14:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:14:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050aadstorelbub34eijpr7lode", + "name": "202503071050AADStorelbub34eijpr7lode", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:05+00:00", "endpoint": "https://202503071050aadstoretvbz6bjfgcrueuj7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050aadstoretvbz6bjfgcrueuj7", + "name": "202503071050AADStoretvbz6bjfgcrueuj7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050featurefiltertestz3tajzl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050featurefiltertestz3tajzl", + "name": "202503071050FeatureFilterTestz3tajzl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050featuretestbis7h3hf75vhu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050featuretestbis7h3hf75vhu", + "name": "202503071050FeatureTestbis7h3hf75vhu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050kvsetimporttestj7dxbos4t.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvsetimporttestj7dxbos4t", + "name": "202503071050KVSetImportTestj7dxbos4t", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050kvtestex2pahcgf6zf6ichhh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvtestex2pahcgf6zf6ichhh", + "name": "202503071050KVTestex2pahcgf6zf6ichhh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:43+00:00", "endpoint": "https://202503071050kvtestpwhanchjfarusoc6hx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvtestpwhanchjfarusoc6hx", + "name": "202503071050KVTestpwhanchjfarusoc6hx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:05+00:00", "endpoint": "https://202503071050source4jumespglx52uvwv73.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050source4jumespglx52uvwv73", + "name": "202503071050Source4jumespglx52uvwv73", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050strictimporttestiabfkuyi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050strictimporttestiabfkuyi", + "name": "202503071050StrictImportTestiabfkuyi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-18T18:36:58+00:00", "endpoint": "https://aacpreviewcddklrzrcr43y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-18T18:36:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-25T17:47:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev3/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewcddklrzrcr43y", + "name": "aacpreviewcddklrzrcr43y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-17T22:34:27+00:00", "endpoint": "https://aacpreviewglh3yhyjvuqx4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-17T22:34:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-17T23:24:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewglh3yhyjvuqx4", + "name": "aacpreviewglh3yhyjvuqx4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-29T18:27:34+00:00", "endpoint": "https://aacpreviewnbuq7mn7uftpu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T18:27:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-30T19:33:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-ai-chat-test/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewnbuq7mn7uftpu", + "name": "aacpreviewnbuq7mn7uftpu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-17T23:42:05+00:00", "endpoint": "https://aacpreviewog5i35jytnwqe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-17T23:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-17T23:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev2/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewog5i35jytnwqe", + "name": "aacpreviewog5i35jytnwqe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-22T18:12:58+00:00", "endpoint": "https://aacpreviewpem2i2yi7hhce.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-22T18:12:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-22T18:12:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-ross-azd-temp/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewpem2i2yi7hhce", + "name": "aacpreviewpem2i2yi7hhce", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d2fc891a-1990-40bd-87e5-89583d8603f0", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-03-21T04:28:43+00:00", + "endpoint": "https://aactest4156.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-03-21T04:28:43+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-06-25T21:39:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_test2/providers/Microsoft.AppConfiguration/configurationStores/aactest4156", + "name": "AACtest4156", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:48:19+00:00", "endpoint": "https://aadstore2fdc6wfxygy2nnb3gw6ckd2sermi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:48:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:48:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2fdc6wfxygy2nnb3gw6ckd2sermi", + "name": "AADStore2fdc6wfxygy2nnb3gw6ckd2sermi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://aadstore2j23nxok6pn5otve.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2j23nxok6pn5otve", + "name": "AADStore2j23nxok6pn5otve", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:25:20+00:00", "endpoint": "https://aadstore2kisbgqpo525kjduvfqihqnsx4nt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:25:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:25:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2kisbgqpo525kjduvfqihqnsx4nt", + "name": "AADStore2kisbgqpo525kjduvfqihqnsx4nt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:29+00:00", "endpoint": "https://aadstore3dce6d55zqgbwack.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore3dce6d55zqgbwack", + "name": "AADStore3dce6d55zqgbwack", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:28+00:00", "endpoint": "https://aadstore6nr3kgh7g33qxwbb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore6nr3kgh7g33qxwbb", + "name": "AADStore6nr3kgh7g33qxwbb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://aadstoreaantdclm5gpqei2hhdf6cva3sljt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreaantdclm5gpqei2hhdf6cva3sljt", + "name": "AADStoreaantdclm5gpqei2hhdf6cva3sljt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T21:46:30+00:00", "endpoint": "https://aadstorec4ol3cqh5zpjr6h26tze7vmjpw3z.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "b82302a5-ce22-429d-b5af-a8969e61ef42", "createdByType": + "Application", "createdAt": "2025-03-18T21:46:30+00:00", "lastModifiedBy": + "b82302a5-ce22-429d-b5af-a8969e61ef42", "lastModifiedByType": "Application", + "lastModifiedAt": "2025-03-18T21:46:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/aadstorec4ol3cqh5zpjr6h26tze7vmjpw3z", + "name": "AADStorec4ol3cqh5zpjr6h26tze7vmjpw3z", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://aadstored4eq4jf2dxb7w6q2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstored4eq4jf2dxb7w6q2", + "name": "AADStored4eq4jf2dxb7w6q2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:54:21+00:00", "endpoint": "https://aadstoredngl3p3poqiv3afvsecphzi7awkv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:54:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:54:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoredngl3p3poqiv3afvsecphzi7awkv", + "name": "AADStoredngl3p3poqiv3afvsecphzi7awkv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://aadstoreehsptlkv33yb6ypf4u6ro2zjzoma.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreehsptlkv33yb6ypf4u6ro2zjzoma", + "name": "AADStoreehsptlkv33yb6ypf4u6ro2zjzoma", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://aadstoreemoarcatx4ig55bf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreemoarcatx4ig55bf", + "name": "AADStoreemoarcatx4ig55bf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:01:10+00:00", "endpoint": "https://aadstorefa47dzf4yc7jajleqyj3fsy5z2ne.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:01:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:01:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefa47dzf4yc7jajleqyj3fsy5z2ne", + "name": "AADStorefa47dzf4yc7jajleqyj3fsy5z2ne", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:07:12+00:00", "endpoint": "https://aadstorefekzsb2x5ovlq42cl4fjprdjcqck.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:07:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:07:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefekzsb2x5ovlq42cl4fjprdjcqck", + "name": "AADStorefekzsb2x5ovlq42cl4fjprdjcqck", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:48:19+00:00", "endpoint": "https://aadstorefj4psmfliidhcij2l53aht4reart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:48:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:48:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefj4psmfliidhcij2l53aht4reart", + "name": "AADStorefj4psmfliidhcij2l53aht4reart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:00+00:00", "endpoint": "https://aadstorefj5yfl63sm2uy46h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefj5yfl63sm2uy46h", + "name": "AADStorefj5yfl63sm2uy46h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T18:39:35+00:00", "endpoint": "https://aadstorehztciysy7xk4ewqzycdsq4incxbl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T18:39:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T18:39:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorehztciysy7xk4ewqzycdsq4incxbl", + "name": "AADStorehztciysy7xk4ewqzycdsq4incxbl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:30:23+00:00", "endpoint": "https://aadstorej6ldt2p4jl4arinnyk6m56v7yxob.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:30:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:30:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorej6ldt2p4jl4arinnyk6m56v7yxob", + "name": "AADStorej6ldt2p4jl4arinnyk6m56v7yxob", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://aadstorelyj2p6zwhasozckb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorelyj2p6zwhasozckb", + "name": "AADStorelyj2p6zwhasozckb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:09+00:00", "endpoint": "https://aadstoremaufp2otrctetauz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoremaufp2otrctetauz", + "name": "AADStoremaufp2otrctetauz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:53:43+00:00", "endpoint": "https://aadstoremqvpy6y6ngbns2zenvqysrzsl3ul.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:53:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:53:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoremqvpy6y6ngbns2zenvqysrzsl3ul", + "name": "AADStoremqvpy6y6ngbns2zenvqysrzsl3ul", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T21:34:01+00:00", "endpoint": "https://aadstoreoi34pez3z4quweid45aemfftd6q5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "0c2e9572-c9a5-4312-87ca-e25e62ce1775", "createdByType": + "Application", "createdAt": "2025-03-18T21:34:01+00:00", "lastModifiedBy": + "0c2e9572-c9a5-4312-87ca-e25e62ce1775", "lastModifiedByType": "Application", + "lastModifiedAt": "2025-03-18T21:34:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/aadstoreoi34pez3z4quweid45aemfftd6q5", + "name": "AADStoreoi34pez3z4quweid45aemfftd6q5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:21:34+00:00", "endpoint": "https://aadstoreptvgrkgrh5qdndt42qsprw5rm6ly.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:21:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:21:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreptvgrkgrh5qdndt42qsprw5rm6ly", + "name": "AADStoreptvgrkgrh5qdndt42qsprw5rm6ly", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:33:36+00:00", "endpoint": "https://aadstorer6gudmc32peoau6hb3bf5vvyj3q2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:33:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:33:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorer6gudmc32peoau6hb3bf5vvyj3q2", + "name": "AADStorer6gudmc32peoau6hb3bf5vvyj3q2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:29:39+00:00", "endpoint": "https://aadstoresadnweyx5hskkifsx7tfsv4ptwqe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:29:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:29:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoresadnweyx5hskkifsx7tfsv4ptwqe", + "name": "AADStoresadnweyx5hskkifsx7tfsv4ptwqe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T18:46:41+00:00", "endpoint": "https://aadstorestvj77kkmdknc2sv7xibljl7433p.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T18:46:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T18:46:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorestvj77kkmdknc2sv7xibljl7433p", + "name": "AADStorestvj77kkmdknc2sv7xibljl7433p", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://aadstoreu4qbgzyfxdmy6lpd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreu4qbgzyfxdmy6lpd", + "name": "AADStoreu4qbgzyfxdmy6lpd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:16+00:00", "endpoint": "https://aadstoreuje4evizirs5a6342bspybsecsib.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreuje4evizirs5a6342bspybsecsib", + "name": "AADStoreuje4evizirs5a6342bspybsecsib", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:11:12+00:00", "endpoint": "https://aadstorevgd2tlbh6eykb7dx2loyzn4xajr3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:11:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:11:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorevgd2tlbh6eykb7dx2loyzn4xajr3", + "name": "AADStorevgd2tlbh6eykb7dx2loyzn4xajr3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:33:12+00:00", "endpoint": "https://aadstorevqztvqfq25dqbpjndilalipnl6tw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:33:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:33:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorevqztvqfq25dqbpjndilalipnl6tw", + "name": "AADStorevqztvqfq25dqbpjndilalipnl6tw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:51:34+00:00", "endpoint": "https://aadstorexqwgsfnuryxk6a52ashu2z6bst3d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:51:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:51:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorexqwgsfnuryxk6a52ashu2z6bst3d", + "name": "AADStorexqwgsfnuryxk6a52ashu2z6bst3d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://aadstorexxspwhf6yblpkshfi46zb4h76jmw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorexxspwhf6yblpkshfi46zb4h76jmw", + "name": "AADStorexxspwhf6yblpkshfi46zb4h76jmw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://aadstoreyfhynglzfhp6ouko.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreyfhynglzfhp6ouko", + "name": "AADStoreyfhynglzfhp6ouko", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:58:27+00:00", "endpoint": "https://aadstorez47z44qmkfeoffaj7p6jyuljr5du.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:58:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:58:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorez47z44qmkfeoffaj7p6jyuljr5du", + "name": "AADStorez47z44qmkfeoffaj7p6jyuljr5du", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-27T11:12:24+00:00", "endpoint": "https://aadtestbphpp6jw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-27T11:12:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-27T11:12:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaqtmt4okxwxkkeqxxixbg26vnobwquumjo2cgvejdroji56rwqdvwasvnebr3xya4/providers/Microsoft.AppConfiguration/configurationStores/aadtestbphpp6jw", + "name": "AadTestbphpp6jw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:52:15+00:00", "endpoint": "https://aadtestfz2vwxiz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:52:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:52:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf32tkfpn6fob3yu73dinjh76shlmvspc3vvnde72phco2oohx5x5zypldebnx5ra2/providers/Microsoft.AppConfiguration/configurationStores/aadtestfz2vwxiz", + "name": "AadTestfz2vwxiz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:42+00:00", "endpoint": "https://aadtestyu6jk3pc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqos4tjbhhejcb656qv6thmesokhiwxsl2lxiwepvzuphcjifnzbefcz2naw2t3dni/providers/Microsoft.AppConfiguration/configurationStores/aadtestyu6jk3pc", + "name": "AadTestyu6jk3pc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:56:22+00:00", "endpoint": "https://aadtestzyc5ivjm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:56:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:56:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjtmgpqlhvdaxivlgfit35z6eugeihochof5nogetvgk7qmljxwhy6mwuks46fy2ev/providers/Microsoft.AppConfiguration/configurationStores/aadtestzyc5ivjm", + "name": "AadTestzyc5ivjm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-29T16:29:13+00:00", "endpoint": "https://ai-chatapp-demo-mametcal.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T16:29:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-29T17:28:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai-chatapp-demo-mametcal/providers/Microsoft.AppConfiguration/configurationStores/ai-chatapp-demo-mametcal", + "name": "AI-ChatApp-Demo-mametcal", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "dfb4ad91-368f-4de1-8101-c7919fd25c5e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-01-23T23:21:07+00:00", + "endpoint": "https://albertofori-ff-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-23T23:21:07+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-02T17:52:47+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-ff-test", + "name": "albertofori-ff-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-17T23:38:28+00:00", "endpoint": "https://albertofori-import-export-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-06-17T23:38:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-26T17:22:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-import-export-test", + "name": "albertofori-import-export-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-26T13:03:30+00:00", "endpoint": "https://albertofori-python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-26T13:03:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-27T17:06:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-python-provider", + "name": "albertofori-python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-12T21:52:32+00:00", "endpoint": "https://albertofori-snapshot-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-12T21:52:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-21T19:32:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-snapshot-demo", + "name": "albertofori-snapshot-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/albertofori-managed-id": + {"principalId": "6a8e5046-50d3-480d-9ca3-94f61a51f8e3", "clientId": "b82302a5-ce22-429d-b5af-a8969e61ef42"}}, + "principalId": "c27e254a-eed2-4326-a0c8-3082898bac95", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-01T17:00:28+00:00", + "endpoint": "https://albertofori-test-config.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Enabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-04-01T17:00:28+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-10-30T18:14:28+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-config", + "name": "albertofori-test-config", "tags": {"this": "is a new tag"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastus", "identity": + {"type": "SystemAssigned", "principalId": "627b96a5-156b-4334-b427-a97f73c44247", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2022-08-11T17:30:03+00:00", "endpoint": "https://albertofori-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 259200, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T17:30:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-11T21:19:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-store", + "name": "albertofori-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c05dd707-b8e5-4147-84e3-b09e2bf280ed", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-19T03:41:20+00:00", + "endpoint": "https://appconfig-zhiyuanliang.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-02-19T03:41:20+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-30T12:24:20+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyuanliang-dev/providers/Microsoft.AppConfiguration/configurationStores/appconfig-zhiyuanliang", + "name": "appconfig-zhiyuanliang", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-18T22:27:36+00:00", "endpoint": "https://appconfigkube.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-18T22:27:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-18T22:27:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mvp_demo/providers/Microsoft.AppConfiguration/configurationStores/appconfigkube", + "name": "appConfigKube", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-09T08:25:44+00:00", + "endpoint": "https://appconfigurationstore1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", "identityClientId": + "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": null, + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 86400, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-09T08:25:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-25T07:59:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/appconfigurationstore1", + "name": "appconfigurationstore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-10T15:50:07+00:00", "endpoint": "https://appconfigw4swdcadfzqb6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-10T15:50:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T17:04:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/appconfigw4swdcadfzqb6", + "name": "appconfigw4swdcadfzqb6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-10-16T18:36:25+00:00", "endpoint": "https://avgupta-appc-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-16T18:36:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-23T19:57:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus", + "name": "avgupta-appc-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-06T17:34:04+00:00", "endpoint": "https://avgupta-appc-eus-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-06T17:34:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-06T17:34:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus-test2", + "name": "avgupta-appc-eus-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:57:29+00:00", "endpoint": "https://bothschematest2ajsnm4m4m.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:57:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:57:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematest2ajsnm4m4m", + "name": "BothSchemaTest2ajsnm4m4m", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T20:04:20+00:00", "endpoint": "https://bothschematestazrlxgv5apnvcwi5dgvsoj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T20:04:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T20:04:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestazrlxgv5apnvcwi5dgvsoj", + "name": "BothSchemaTestazrlxgv5apnvcwi5dgvsoj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:51+00:00", "endpoint": "https://bothschematestdxcevakc6u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestdxcevakc6u", + "name": "BothSchemaTestdxcevakc6u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:07:29+00:00", "endpoint": "https://bothschematestfxm4zemppk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:07:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:07:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestfxm4zemppk", + "name": "BothSchemaTestfxm4zemppk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-29T00:38:15+00:00", "endpoint": "https://cdntestinghtkswxoxu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2025-05-29T00:38:15+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-29T00:42:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/cdntestinghtkswxoxu", + "name": "cdntestinghtkswxoxu", "tags": {"demo": "cdn-cache-busting"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastus", "properties": + {"provisioningState": "Succeeded", "creationDate": "2024-12-06T08:13:55+00:00", + "endpoint": "https://chenshi-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-12-06T08:13:55+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-12-06T08:13:55+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chenshi-empty/providers/Microsoft.AppConfiguration/configurationStores/chenshi-test", + "name": "chenshi-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-31T04:09:21+00:00", "endpoint": "https://credentialtestghlwa5dymj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-31T04:09:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-31T04:09:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmduhbiqbiiegesiuewzdwlvnh6wrdgdsbti6tgxzjzeittnnlqwu4or5gzhqmjzcp/providers/Microsoft.AppConfiguration/configurationStores/credentialtestghlwa5dymj", + "name": "CredentialTestghlwa5dymj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://credentialtestrvdev7icfu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkhjgepteg6uxberos6x5tz6bbxjgjliagmxzgu2iehb5me5yqmle6shfkr43tgvue/providers/Microsoft.AppConfiguration/configurationStores/credentialtestrvdev7icfu", + "name": "CredentialTestrvdev7icfu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:00+00:00", "endpoint": "https://credentialtestvdwi2cve5c.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/credentialtestvdwi2cve5c", + "name": "CredentialTestvdwi2cve5c", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-08T10:32:41+00:00", "endpoint": "https://cwanjau-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-01-08T10:32:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-20T17:42:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-appconfig", + "name": "cwanjau-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T16:42:42+00:00", "endpoint": "https://cwanjau-data.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T16:42:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T16:42:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-data", + "name": "cwanjau-data", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-24T15:05:46+00:00", "endpoint": "https://cwanjauconfig.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", + "identityClientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-24T15:05:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-06T08:22:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjauconfig", + "name": "cwanjauConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-05T17:31:19+00:00", "endpoint": "https://cwanjautestpremiumsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-05T17:31:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-18T09:00:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjautestpremiumsku", + "name": "cwanjautestpremiumsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:58+00:00", "endpoint": "https://destination624bxoocjr2fi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwyttwmni2xmbsaxrtp64sja6rdh2ocxcprrc5pwdogqijazx7f4vhljo5qfanoryn/providers/Microsoft.AppConfiguration/configurationStores/destination624bxoocjr2fi", + "name": "Destination624bxoocjr2fi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:21+00:00", "endpoint": "https://destinationaoj4n5rlqmypa.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:50:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:50:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationaoj4n5rlqmypa", + "name": "Destinationaoj4n5rlqmypa", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:53:04+00:00", "endpoint": "https://destinationaq6eqb6bwrydgaariika6z53n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:53:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:53:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationaq6eqb6bwrydgaariika6z53n", + "name": "Destinationaq6eqb6bwrydgaariika6z53n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:31+00:00", "endpoint": "https://destinationcplr7jafu2ya5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationcplr7jafu2ya5", + "name": "Destinationcplr7jafu2ya5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:34:19+00:00", "endpoint": "https://destinationibqoopqxlj6k6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:34:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:34:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationibqoopqxlj6k6", + "name": "Destinationibqoopqxlj6k6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:56+00:00", "endpoint": "https://destinationlxi67pwgjj57oguvmzwgkt2vf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationlxi67pwgjj57oguvmzwgkt2vf", + "name": "Destinationlxi67pwgjj57oguvmzwgkt2vf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:22+00:00", "endpoint": "https://destinationnqga6gaurejxxtvybkxnccztp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationnqga6gaurejxxtvybkxnccztp", + "name": "Destinationnqga6gaurejxxtvybkxnccztp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:52:14+00:00", "endpoint": "https://destinationoj2i2wxwar47i.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationoj2i2wxwar47i", + "name": "Destinationoj2i2wxwar47i", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:39:38+00:00", "endpoint": "https://destinationrzqf65ztf6tdr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:39:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:39:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationrzqf65ztf6tdr", + "name": "Destinationrzqf65ztf6tdr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:07:04+00:00", "endpoint": "https://destinationvzuqxfj74tquf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:07:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:07:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguznozpjynfgaebftsnnrdc52h2scgoorpr6unkhktfxrcwsulo6qvsxb6b6j2jkfn/providers/Microsoft.AppConfiguration/configurationStores/destinationvzuqxfj74tquf", + "name": "Destinationvzuqxfj74tquf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:00:21+00:00", "endpoint": "https://destinationwjno7ctvxyjrl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:00:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:00:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationwjno7ctvxyjrl", + "name": "Destinationwjno7ctvxyjrl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:02+00:00", "endpoint": "https://destinationy75zwpupmogkjvsohc7ou4yxv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationy75zwpupmogkjvsohc7ou4yxv", + "name": "Destinationy75zwpupmogkjvsohc7ou4yxv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:37:44+00:00", "endpoint": "https://disablelocalauthfju7nz7v.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:37:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:38:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthfju7nz7v", + "name": "DisableLocalAuthfju7nz7v", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:58:33+00:00", "endpoint": "https://disablelocalauthhs4noupq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:58:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:59:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthhs4noupq", + "name": "DisableLocalAuthhs4noupq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:04+00:00", "endpoint": "https://disablelocalauthqaeotexuyh5meeg5l7xm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthqaeotexuyh5meeg5l7xm", + "name": "DisableLocalAuthqaeotexuyh5meeg5l7xm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:48:35+00:00", "endpoint": "https://disablelocalauthsejaovxn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:48:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:49:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthsejaovxn", + "name": "DisableLocalAuthsejaovxn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:39+00:00", "endpoint": "https://featurefiltertest4oe7rjo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest4oe7rjo", + "name": "FeatureFilterTest4oe7rjo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:41+00:00", "endpoint": "https://featurefiltertest4qffyn3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq3rajrlh5wrogzgbxi7z4mjxxcjgiie4yagnbmwn6wrksy52etjishk2wfygh6qc5/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest4qffyn3", + "name": "FeatureFilterTest4qffyn3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:49+00:00", "endpoint": "https://featurefiltertest5a5yxm3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest5a5yxm3", + "name": "FeatureFilterTest5a5yxm3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:06+00:00", "endpoint": "https://featurefiltertestak76alz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestak76alz", + "name": "FeatureFilterTestak76alz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:59+00:00", "endpoint": "https://featurefiltertestczvejyt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestczvejyt", + "name": "FeatureFilterTestczvejyt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:31+00:00", "endpoint": "https://featurefiltertestntvamlv3qsxhrqghqxt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestntvamlv3qsxhrqghqxt", + "name": "FeatureFilterTestntvamlv3qsxhrqghqxt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:08:03+00:00", "endpoint": "https://haiyiwen-weu-0716.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:08:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:08:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716", + "name": "haiyiwen-weu-0716", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:23:12+00:00", "endpoint": "https://haiyiwen-weu-0716-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:23:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:23:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-1", + "name": "haiyiwen-weu-0716-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:24:06+00:00", "endpoint": "https://haiyiwen-weu-0716-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:24:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:24:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-2", + "name": "haiyiwen-weu-0716-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:29:54+00:00", "endpoint": "https://haiyiwen-weu-0716-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:29:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:29:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-3", + "name": "haiyiwen-weu-0716-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:30:11+00:00", "endpoint": "https://haiyiwen-weu-0716-4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:30:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:30:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-4", + "name": "haiyiwen-weu-0716-4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:30:27+00:00", "endpoint": "https://haiyiwen-weu-0716-5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:30:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:30:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-5", + "name": "haiyiwen-weu-0716-5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:39:47+00:00", "endpoint": "https://haiyiwen-weu-0716-6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:39:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:39:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-6", + "name": "haiyiwen-weu-0716-6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-11T17:46:54+00:00", "endpoint": "https://jlinares-weu-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-11T17:46:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-11T17:46:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-weu-test", + "name": "jlinares-weu-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-11-20T20:44:09+00:00", "endpoint": "https://parameters.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-20T20:44:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-09T21:27:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/parameters", + "name": "parameters", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southeastasia", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-23T08:11:48+00:00", "endpoint": "https://appconfig-dova-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-23T08:11:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-23T08:11:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfig-dova/providers/Microsoft.AppConfiguration/configurationStores/appconfig-dova-store", + "name": "appconfig-dova-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-10-08T16:40:07+00:00", "endpoint": "https://australia-east-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-08T16:40:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-08T16:40:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/australia-east-test", + "name": "australia-east-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-10-21T20:31:31+00:00", "endpoint": "https://tolani-aue-aad-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-21T20:31:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-21T21:13:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-aue-aad-test", + "name": "tolani-aue-aad-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-05T20:33:25+00:00", "endpoint": "https://tolani-aue-test-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T20:33:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-05T20:33:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-aue-test-2", + "name": "tolani-aue-test-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "identity": {"type": "SystemAssigned", "principalId": + "5b4d94b7-a951-4698-805a-cfc91ee54f15", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-08-06T12:26:08+00:00", + "endpoint": "https://freestoreee.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-08-06T12:26:08+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-08-07T07:30:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestoreee", + "name": "freeStoreee", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-test": + {"principalId": "1a010275-1a70-4915-a017-b778836ea3b7", "clientId": "b60a60f9-e266-447b-a168-15af052f49a1"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-01-16T19:22:44+00:00", + "endpoint": "https://jiyu-neu.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-16T19:22:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-08T00:09:31+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-neu", + "name": "jiyu-neu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-18T16:15:26+00:00", "endpoint": "https://testupgradefree.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T16:15:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-20T17:38:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testupgradefree", + "name": "testupgradefree", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uksouth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-15T08:59:14+00:00", "endpoint": "https://cwanjau-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-15T08:59:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T07:24:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-pe", + "name": "cwanjau-PE", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uksouth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-22T22:32:16+00:00", "endpoint": "https://tolani-prod-uks-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-22T22:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-22T22:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-uks-1", + "name": "tolani-prod-uks-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/albertofori-managed-id": + {"principalId": "6a8e5046-50d3-480d-9ca3-94f61a51f8e3", "clientId": "b82302a5-ce22-429d-b5af-a8969e61ef42"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-01T22:41:59+00:00", + "endpoint": "https://albertofori-diff-import-export.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-01T22:41:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-11T21:32:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-diff-import-export", + "name": "albertofori-diff-import-export", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-20T20:26:27+00:00", "endpoint": "https://albertoforiteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-06-20T20:26:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-09T01:23:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforiteststore", + "name": "albertoforiteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T22:55:24+00:00", "endpoint": "https://avgupta-appc-eus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T22:55:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-07T23:58:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus2", + "name": "avgupta-appc-eus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-21T16:22:23+00:00", "endpoint": "https://haiyiwen-aiconfig-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-21T16:22:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-04T04:24:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-aiconfig-demo", + "name": "haiyiwen-aiconfig-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-06-05T18:10:41+00:00", + "endpoint": "https://haiyiwen-eus2-0605.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-05T18:10:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T20:57:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2-0605", + "name": "haiyiwen-eus2-0605", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-05T18:25:54+00:00", "endpoint": "https://haiyiwen-eus2-0605-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-05T18:25:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-05T18:25:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2-0605-1", + "name": "haiyiwen-eus2-0605-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-06T22:13:49+00:00", "endpoint": "https://jiyu-eus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-06T22:13:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-06T22:19:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus2", + "name": "jiyu-eus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-06T18:34:38+00:00", "endpoint": "https://portal-test-eu2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-06T18:34:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T17:29:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-eu2", + "name": "portal-test-eu2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-17T20:42:26+00:00", "endpoint": "https://portal-test-eu2-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-17T20:42:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-18T00:52:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-eu2-2", + "name": "portal-test-eu2-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-09T08:19:20+00:00", "endpoint": "https://test-experimentation.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-09T08:19:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-09T08:24:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/test-experimentation", + "name": "test-experimentation", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-15T17:26:16+00:00", "endpoint": "https://appconfig-mfpyttqk5gws.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-15T17:26:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-15T17:26:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfig-mfpyttqk5gws", + "name": "appconfig-mfpyttqk5gws", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "c45e9ed2-6e72-460a-82f9-6306b65fa956", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-03-02T02:42:51+00:00", + "endpoint": "https://appconfigtwo.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-03-02T02:42:51+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-03-03T20:14:50+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/appconfigtwo", + "name": "AppConfigTwo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T17:01:30+00:00", "endpoint": "https://appconfigwmsp7gt2w2iak.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-10-23T17:01:30+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-10-23T17:01:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/appconfigwmsp7gt2w2iak", + "name": "appconfigwmsp7gt2w2iak", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-10T02:44:51+00:00", "endpoint": "https://asdfasdfad.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-10T02:44:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-10T02:44:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/asdfasdfad", + "name": "asdfasdfad", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-25T17:28:57+00:00", "endpoint": "https://avgupta-appc-wus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-25T17:28:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-13T17:23:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus2", + "name": "avgupta-appc-wus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "4090f296-4b68-49d2-9250-9bcff07d821b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-11-22T19:29:17+00:00", + "endpoint": "https://avgupta-pe-appc.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-22T19:29:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T00:41:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc", + "name": "avgupta-pe-appc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T09:10:56+00:00", "endpoint": "https://configmapimporttest2uedl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T09:10:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T09:10:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest2uedl", + "name": "ConfigMapImportTest2uedl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T09:04:11+00:00", "endpoint": "https://configmapimporttest3nenl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T09:04:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T09:04:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest3nenl", + "name": "ConfigMapImportTest3nenl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-15T03:11:28+00:00", "endpoint": "https://configmapimporttest5eotn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-15T03:11:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-15T03:11:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest5eotn", + "name": "ConfigMapImportTest000002", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T08:22:05+00:00", "endpoint": "https://configmapimporttest7ugov.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T08:22:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T08:22:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest7ugov", + "name": "ConfigMapImportTest7ugov", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T14:47:55+00:00", "endpoint": "https://configmapimporttesteqacu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T14:47:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T14:47:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttesteqacu", + "name": "ConfigMapImportTesteqacu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T14:46:09+00:00", "endpoint": "https://configmapimporttestezsgo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T14:46:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T14:46:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestezsgo", + "name": "ConfigMapImportTestezsgo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-15T02:42:27+00:00", "endpoint": "https://configmapimporttestghpw2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-15T02:42:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-15T02:42:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestghpw2", + "name": "ConfigMapImportTestghpw2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T15:36:34+00:00", "endpoint": "https://configmapimporttestifrht.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T15:36:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T15:36:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestifrht", + "name": "ConfigMapImportTestifrht", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T07:13:43+00:00", "endpoint": "https://configmapimporttestiy6dj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T07:13:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T07:13:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestiy6dj", + "name": "ConfigMapImportTestiy6dj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T15:05:24+00:00", "endpoint": "https://configmapimporttestjiwd3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T15:05:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T15:05:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestjiwd3", + "name": "ConfigMapImportTestjiwd3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T09:45:34+00:00", "endpoint": "https://configmapimporttestjxp4j.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T09:45:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T09:45:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestjxp4j", + "name": "ConfigMapImportTestjxp4j", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T08:06:28+00:00", "endpoint": "https://configmapimporttests45es.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T08:06:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T08:06:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttests45es", + "name": "ConfigMapImportTests45es", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T07:38:51+00:00", "endpoint": "https://configmapimporttestubqzy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T07:38:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T07:38:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestubqzy", + "name": "ConfigMapImportTestubqzy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-30T00:09:38+00:00", "endpoint": "https://demombappconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-06-30T00:09:38+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-07-18T22:42:16+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/demombappconfig", + "name": "DemoMBAppConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-27T19:10:15+00:00", "endpoint": "https://fake-endpoint.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-27T19:10:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-27T19:11:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/fake-endpoint", + "name": "fake-endpoint", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-13T17:36:36+00:00", "endpoint": "https://highnumberffstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-13T17:36:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-13T17:36:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/highnumberffstore", + "name": "HighNumberFFStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-13T15:59:39+00:00", "endpoint": "https://importtestspring.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-13T15:59:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-13T15:59:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/importtestspring", + "name": "importtestspring", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-21T23:27:57+00:00", "endpoint": "https://java-export-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-21T23:27:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-21T23:27:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/java-export-test", + "name": "java-export-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-07-01T18:03:45+00:00", "endpoint": "https://jlinares-test-slw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-01T18:03:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-07-01T18:03:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-slw", + "name": "jlinares-test-slw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-04-07T23:28:48+00:00", "endpoint": "https://jlinares-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-07T23:28:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-07T23:28:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-store", + "name": "jlinares-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-25T17:10:07+00:00", "endpoint": "https://largekeyvaultstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-25T17:10:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-25T17:10:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/largekeyvaultstore", + "name": "LargeKeyVaultStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-22T18:40:42+00:00", "endpoint": "https://mb-test-template.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-22T18:40:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-22T18:40:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/mb-test-template", + "name": "mb-test-template", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-03-19T19:54:12+00:00", "endpoint": "https://nofeatureflagstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2020-03-19T19:54:12+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-03-19T19:54:12+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/nofeatureflagstore", + "name": "NoFeatureFlagStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-22T19:32:34+00:00", "endpoint": "https://noreplicatest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-22T19:32:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-22T19:32:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/noreplicatest", + "name": "noReplicaTest", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-26T22:52:06+00:00", "endpoint": "https://python-ai-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-26T22:52:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-26T22:52:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-azureaidemomametcal/providers/Microsoft.AppConfiguration/configurationStores/python-ai-test", + "name": "python-ai-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-22T17:53:31+00:00", "endpoint": "https://python-chatapp-example.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-22T17:53:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-25T23:18:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-chatapp-example", + "name": "Python-ChatApp-Example", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-13T18:28:47+00:00", "endpoint": "https://python-multi-source-ff.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-13T18:28:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-27T18:33:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-multi-source-ff", + "name": "python-multi-source-ff", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-01T16:51:09+00:00", "endpoint": "https://python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-01T16:51:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-25T17:52:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider", + "name": "python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-09T17:53:50+00:00", "endpoint": "https://python-provider-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-09T17:53:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-09T17:53:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider-demo", + "name": "python-provider-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-26T18:00:59+00:00", "endpoint": "https://python-provider-flask-sample.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-26T18:00:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-18T22:38:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider-flask-sample", + "name": "python-provider-flask-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-27T19:37:52+00:00", "endpoint": "https://python-provider-tests.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-27T19:37:52+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T21:30:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/python-provider-tests", + "name": "python-provider-tests", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-06-12T15:05:18+00:00", "endpoint": "https://recoverstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-06-12T15:05:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-12T15:05:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/recoverstore", + "name": "recoverStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-06T18:58:43+00:00", "endpoint": "https://screenshotdocstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-06T18:58:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-16T23:29:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/screenshotdocstore", + "name": "screenshotdocstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-12-07T18:13:20+00:00", "endpoint": "https://spring-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-12-07T18:13:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-12-07T18:13:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-demo", + "name": "Spring-Demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-01T17:01:47+00:00", "endpoint": "https://spring-df-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-01T17:01:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-09-01T17:01:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-df-demo", + "name": "spring-df-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-30T19:16:42+00:00", "endpoint": "https://spring-quickstart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-30T19:16:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-30T19:16:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-quickstart", + "name": "spring-quickstart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-01-17T10:27:02+00:00", "endpoint": "https://spring-sync-token.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-01-17T10:27:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-01-17T10:27:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-sync-token", + "name": "spring-sync-token", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-19T17:09:21+00:00", "endpoint": "https://springdocchecks.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-19T17:09:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-19T17:09:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/springdocchecks", + "name": "SpringDocChecks", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-20T05:54:32+00:00", "endpoint": "https://t-vvidyasaga-ac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-20T05:54:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-20T05:54:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac", + "name": "t-vvidyasaga-ac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-23T16:43:34+00:00", "endpoint": "https://t-vvidyasaga-ac-learn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-23T16:43:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-23T16:43:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac-learn", + "name": "t-vvidyasaga-ac-learn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-27T17:42:41+00:00", "endpoint": "https://t-vvidyasaga-ac2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-27T17:42:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-27T17:42:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac2", + "name": "t-vvidyasaga-ac2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-12T16:26:03+00:00", "endpoint": "https://telemetryhashvalidation.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-12T16:26:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-13T23:01:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/telemetryhashvalidation", + "name": "TelemetryHashValidation", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-03-15T20:28:18+00:00", "endpoint": "https://testh.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-03-15T20:28:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-03-15T20:28:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/testh", + "name": "testh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-16T02:10:36+00:00", "endpoint": "https://tolani.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-16T02:10:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-16T02:17:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani", + "name": "tolani", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-29T21:40:07+00:00", "endpoint": "https://tolani-api-version-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-29T21:40:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-29T21:40:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-api-version-test", + "name": "tolani-api-version-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T17:56:34+00:00", "endpoint": "https://tolani-cnry-dev-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T17:56:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T17:56:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-cnry-dev-test", + "name": "tolani-cnry-dev-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "2196a2a0-d665-409c-a05a-470b2b6409bf", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-06-19T20:20:22+00:00", + "endpoint": "https://tolani-demo.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-06-19T20:20:22+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-06-23T20:58:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-demo", + "name": "tolani-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T03:59:14+00:00", "endpoint": "https://tolani-prod-aad-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T03:59:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-19T21:22:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-aad-test", + "name": "tolani-prod-aad-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-01T16:38:22+00:00", "endpoint": "https://tolani-snap-ref-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-01T16:38:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-09T21:20:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-snap-ref-demo", + "name": "tolani-snap-ref-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-15T00:05:33+00:00", "endpoint": "https://tolani-snapshot-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-15T00:05:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-15T00:13:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-snapshot-test", + "name": "tolani-snapshot-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-19T18:22:29+00:00", "endpoint": "https://tolani-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-19T18:22:29+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-07-22T22:41:23+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-store", + "name": "tolani-store", "tags": {"myTestTag": "[12,14,15]", "myTestTag2": + "{\"key\":\"value\"}", "myTestTag3": "askldfjlksdjfksdf\\"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-24T22:15:44+00:00", "endpoint": "https://tolani-test-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-24T22:15:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-24T22:15:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-test-1", + "name": "tolani-test-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "brazilsouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-11T15:37:27+00:00", "endpoint": "https://brzls.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-11T15:37:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-11T15:37:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/brzls", + "name": "Brzls", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T17:29:23+00:00", "endpoint": "https://albertofori-notification-canadacentral.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-10T17:29:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T18:10:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-canadacentral", + "name": "albertofori-notification-canadacentral", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-05-29T20:34:57+00:00", "endpoint": "https://avgupta-appc-cac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-29T20:34:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-29T20:35:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-cac", + "name": "avgupta-appc-cac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.ManagedIdentity/userAssignedIdentities/junbchen-identity-cmk": + {"principalId": "e790947e-9f1d-4382-af0f-eec738f38956", "clientId": "43310a7e-10ee-4a8d-95d5-512587f292b9"}}, + "principalId": "c315f504-623d-47f4-8c17-5990a848717b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-07T14:26:45+00:00", + "endpoint": "https://junbchenconfig-demo-ca.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://junbchenkeyvault.vault.azure.net/keys/key1/6998a4384b444f4bad0bf27a556ad115", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-07T14:26:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T06:18:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-demo-ca", + "name": "junbchenconfig-demo-ca", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastasia", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T06:45:35+00:00", "endpoint": "https://appc-6oexkucpmwqte.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T06:45:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T09:57:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-rg-azd-test/providers/Microsoft.AppConfiguration/configurationStores/appc-6oexkucpmwqte", + "name": "appc-6oexkucpmwqte", "tags": {"azd-env-name": "test"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastasia", + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-07-31T02:07:56+00:00", + "endpoint": "https://linglingye-appconfig-test.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-31T02:07:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-15T08:21:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linglingye-rg/providers/Microsoft.AppConfiguration/configurationStores/linglingye-appconfig-test", + "name": "linglingye-appconfig-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastasia", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-03-05T00:58:22+00:00", "endpoint": "https://teststore2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2021-03-05T00:58:22+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-05-10T06:06:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vendorteamtestrg/providers/Microsoft.AppConfiguration/configurationStores/teststore2", + "name": "TestStore2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-07T12:21:12+00:00", "endpoint": "https://202503071050snapshotfilters5in556ck5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:21:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:21:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050snapshotfilters5in556ck5", + "name": "202503071050SnapshotFilters5in556ck5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-07T12:21:12+00:00", "endpoint": "https://202503071050snapshotstoreonrneh6qvta.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:21:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:21:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050snapshotstoreonrneh6qvta", + "name": "202503071050SnapshotStoreonrneh6qvta", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T18:33:42+00:00", "endpoint": "https://albertofori-notification-frc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-11-10T18:33:42+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-09-11T09:16:13+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-frc", + "name": "albertofori-notification-frc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, + "principalId": "03682d8e-25ea-4541-a59b-9ebbbc02a84f", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-05-17T16:27:19+00:00", + "endpoint": "https://haiyiwen-francecentral-0517.azconfig.io", "encryption": + {"keyVaultProperties": {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt-2", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-17T16:27:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-12T17:24:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-francecentral-0517", + "name": "haiyiwen-francecentral-0517", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:51:58+00:00", "endpoint": "https://snapshotstore3tzfoxsj2hh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:51:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:51:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstore3tzfoxsj2hh", + "name": "SnapshotStore3tzfoxsj2hh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:53:28+00:00", "endpoint": "https://snapshotstore6nglgwfngm4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:53:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:53:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstore6nglgwfngm4", + "name": "SnapshotStore6nglgwfngm4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-19T19:57:22+00:00", "endpoint": "https://snapshotstorecw2f475e3rbcjdgongmzj3n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:57:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:57:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorecw2f475e3rbcjdgongmzj3n", + "name": "SnapshotStorecw2f475e3rbcjdgongmzj3n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T04:41:14+00:00", "endpoint": "https://snapshotstoredtargmcnsz3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:41:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:41:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoredtargmcnsz3", + "name": "SnapshotStoredtargmcnsz3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:02:07+00:00", "endpoint": "https://snapshotstorekz4vgltrfnd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:02:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:02:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorekz4vgltrfnd", + "name": "SnapshotStorekz4vgltrfnd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T04:42:38+00:00", "endpoint": "https://snapshotstoren7gxfapmtjw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:42:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:42:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoren7gxfapmtjw", + "name": "SnapshotStoren7gxfapmtjw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-19T19:56:01+00:00", "endpoint": "https://snapshotstoreopjrr76ymkn6nu453hufygh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:56:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:56:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoreopjrr76ymkn6nu453hufygh", + "name": "SnapshotStoreopjrr76ymkn6nu453hufygh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-01-29T23:28:22+00:00", "endpoint": "https://snapshotstoretpfayszap3s.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbwbtajdklwfk67dv4364xpuqyofxkkayxfyccf3lna6dulmb54f3trwrfxt7kqumw/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoretpfayszap3s", + "name": "SnapshotStoretpfayszap3s", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:03:21+00:00", "endpoint": "https://snapshotstorexkvbufgx7cu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:03:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:03:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorexkvbufgx7cu", + "name": "SnapshotStorexkvbufgx7cu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-06T10:09:10+00:00", "endpoint": "https://freestore45.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-06T10:09:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T10:15:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestore45", + "name": "freestore45", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-07T07:55:12+00:00", "endpoint": "https://freeteststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-07T07:55:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:15:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freeteststore1", + "name": "freeteststore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-22T09:57:08+00:00", "endpoint": "https://testfree.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-22T09:57:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-22T09:58:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testfree", + "name": "testfree", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-02T07:53:38+00:00", "endpoint": "https://testfree-cwanjau.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-02T07:53:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:50:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testfree-cwanjau", + "name": "testfree-cwanjau", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "germanywestcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-06T09:56:07+00:00", "endpoint": "https://freestoreeee.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-06T09:56:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T10:05:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestoreeee", + "name": "freeStoreeee", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uaenorth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-31T20:44:08+00:00", "endpoint": "https://xuxu-premium-test-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2024-05-31T20:44:08+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-05-31T20:44:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-premium-test-1", + "name": "xuxu-premium-test-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "norwayeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-05-12T20:17:59+00:00", "endpoint": "https://jlinares-noe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-12T20:17:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-17T09:11:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-noe", + "name": "jlinares-noe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southafricanorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-05-17T21:28:52+00:00", "endpoint": "https://jlinares-test-zan.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-05-17T21:28:52+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-05-17T21:28:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-zan", + "name": "jlinares-test-zan", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "ukwest", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-25T18:39:43+00:00", "endpoint": "https://albertoforiteststore3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-25T18:39:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-25T18:39:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforiteststore3", + "name": "albertoforitestStore3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T18:05:55+00:00", "endpoint": "https://avgupta-appc-wus3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-23T18:05:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-10T23:11:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus3", + "name": "avgupta-appc-wus3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-31T16:36:31+00:00", "endpoint": "https://jimmy-arm-kv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-31T16:36:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-31T16:38:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmy-arm-kv", + "name": "jimmy-arm-kv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-15T20:48:29+00:00", "endpoint": "https://jimmyca-local-auth-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-15T20:48:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-15T20:48:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-local-auth-test", + "name": "jimmyca-local-auth-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-17T18:47:49+00:00", "endpoint": "https://jimmyca-temp-repro.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-17T18:47:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-17T18:47:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-temp-repro", + "name": "jimmyca-temp-repro", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-13T20:07:21+00:00", "endpoint": "https://jlinares-kj-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-13T20:07:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-13T20:08:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-kj-test", + "name": "jlinares-kj-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "brazilsoutheast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-02-10T07:12:05+00:00", "endpoint": "https://jlinares-brse.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-10T07:12:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-02-10T07:12:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-brse", + "name": "jlinares-brse", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-10-19T16:35:22+00:00", "endpoint": "https://abcappc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-10-19T16:35:22+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-30T22:58:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/abcappc", + "name": "abcAppC", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-24T17:22:12+00:00", "endpoint": "https://abcdevtest123.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-04-24T17:22:12+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-17T21:40:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_test1/providers/Microsoft.AppConfiguration/configurationStores/abcdevtest123", + "name": "abcdevTest123", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-19T19:00:55+00:00", "endpoint": "https://bugbash-test-exp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-19T19:00:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-19T19:00:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/minhaz-test/providers/Microsoft.AppConfiguration/configurationStores/bugbash-test-exp", + "name": "bugbash-test-exp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-22T02:28:03+00:00", "endpoint": "https://haiyiwen-dev-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-22T02:28:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-22T02:28:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-dev-swc", + "name": "haiyiwen-dev-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:40:56+00:00", "endpoint": "https://haiyiwen-swc-0716-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:40:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:40:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-swc-0716-1", + "name": "haiyiwen-swc-0716-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-13T00:19:15+00:00", "endpoint": "https://jiyu-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-13T00:19:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-13T00:21:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-swc", + "name": "jiyu-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-02-13T22:31:11+00:00", "endpoint": "https://jlinares-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-13T22:31:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-02-17T17:57:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-swc", + "name": "jlinares-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-12T09:12:08+00:00", "endpoint": "https://mgich-swc.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": "d272d921-c6fa-4394-889a-acb85a9de520"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-12T09:12:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-12T09:12:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-swc", + "name": "mgich-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-17T20:31:20+00:00", "endpoint": "https://portal-test-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-17T20:31:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T20:38:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-swc", + "name": "portal-test-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-01-22T22:31:08+00:00", "endpoint": "https://tolani-prod-swc-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-22T22:31:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-22T22:31:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-swc-1", + "name": "tolani-prod-swc-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "switzerlandwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-07-01T18:05:05+00:00", "endpoint": "https://jlinares-slw1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-01T18:05:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-07-01T18:05:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-slw1", + "name": "jlinares-slw1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "qatarcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-08-05T22:33:14+00:00", "endpoint": "https://jlinares-test-qac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-05T22:33:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-05T22:33:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-qac", + "name": "jlinares-test-qac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southindia", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-08-14T04:10:16+00:00", "endpoint": "https://jlinares-sin-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-14T04:10:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-14T04:10:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-sin-test", + "name": "jlinares-sin-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "polandcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-11T17:58:49+00:00", "endpoint": "https://jlinares-plc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-11T17:58:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-11T17:59:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-plc", + "name": "jlinares-plc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:16:04+00:00", "endpoint": "https://jlinares-cae.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:16:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-cae", + "name": "jlinares-cae", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "norwaywest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:17:12+00:00", "endpoint": "https://jlinares-now.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:17:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:17:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-now", + "name": "jlinares-now", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:19:10+00:00", "endpoint": "https://jlinares-auc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:19:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-31T21:47:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-auc", + "name": "jlinares-auc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiacentral2", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:20:00+00:00", "endpoint": "https://jlinares-auc2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:20:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-22T23:30:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-auc2", + "name": "jlinares-auc2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francesouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:24:27+00:00", "endpoint": "https://jlinares-frs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:24:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:24:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-frs", + "name": "jlinares-frs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "israelcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-08T22:28:48+00:00", "endpoint": "https://jlinares-ilc-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-08T22:28:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-29T21:06:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-ilc-test", + "name": "jlinares-ilc-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southafricawest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-19T21:22:00+00:00", "endpoint": "https://jlinares-zaw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-19T21:22:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-19T21:22:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-zaw", + "name": "jlinares-zaw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "mexicocentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-01T22:05:42+00:00", "endpoint": "https://jlinares-mxc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-01T22:05:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-01T22:07:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-mxc", + "name": "jlinares-mxc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "spaincentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T17:59:45+00:00", "endpoint": "https://albertofori-notification-spaincentral.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T17:59:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-29T18:02:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-spaincentral", + "name": "albertofori-notification-spaincentral", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "spaincentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-29T21:04:44+00:00", "endpoint": "https://jlinares-esc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-29T21:04:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-29T21:07:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-esc", + "name": "jlinares-esc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "newzealandnorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-09-25T16:56:29+00:00", "endpoint": "https://jlinares-nzn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-25T16:56:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-25T16:56:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-nzn", + "name": "jlinares-nzn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uaecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-07-22T20:33:25+00:00", "endpoint": "https://jlinares-uaec.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-22T20:33:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-22T20:33:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-uaec", + "name": "jlinares-uaec", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "jioindiacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-07-22T20:20:55+00:00", "endpoint": "https://jlinares-jinc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-22T20:20:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-22T20:20:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-jinc", + "name": "jlinares-jinc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-06T02:14:44+00:00", "endpoint": "https://app-central-us-euap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 1728000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-03-06T02:14:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-05T19:04:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/app-central-us-euap", + "name": "app-central-us-euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-10T20:11:10+00:00", "endpoint": "https://avgupta-pe-appc-cuseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc-cuseuap/privateEndpointConnections/dupe-connection-name", + "name": "dupe-connection-name", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-cuseuap/providers/Microsoft.Network/privateEndpoints/tolani-pe-1"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-10T20:11:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-10T16:59:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc-cuseuap", + "name": "avgupta-pe-appc-cuseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2021-12-14T21:54:18+00:00", "endpoint": "https://jimmyca-cuseuap-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cuseuap-3/privateEndpointConnections/jimmyca-pe", + "name": "jimmyca-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.Network/privateEndpoints/jimmyca-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-12-14T21:54:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T05:44:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cuseuap-3", + "name": "jimmyca-cuseuap-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, + "principalId": "83480881-97ec-43f7-8dfc-8200cb4ac000", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-10-16T16:09:26+00:00", + "endpoint": "https://jiyu-cuseuap-store-1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, "privateEndpointConnections": null, + "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-10-16T16:09:26+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:56+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-cuseuap-store-1", + "name": "jiyu-cuseuap-store-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-07T07:59:52+00:00", "endpoint": "https://jiyu-cuseuap-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-07T07:59:52+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:33+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-1/providers/Microsoft.AppConfiguration/configurationStores/jiyu-cuseuap-test2", + "name": "jiyu-cuseuap-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-02-02T18:32:20+00:00", "endpoint": "https://jlinares-cuseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-02T18:32:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-02T18:32:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-cuseuap", + "name": "jlinares-cuseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-07T18:16:04+00:00", "endpoint": "https://kjeong-portal-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-07T18:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-05T14:26:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/kjeong-portal-test", + "name": "kjeong-portal-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-15T00:46:21+00:00", "endpoint": "https://nspinttestpoer5zfwwjmp2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-15T00:46:21+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:13+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/nspinttestpoer5zfwwjmp2", + "name": "nspinttestpoer5zfwwjmp2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "identity": {"type": "SystemAssigned", "principalId": + "6f851a0b-ea65-444a-bf7e-209c41feaabc", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-03-01T03:21:20+00:00", + "endpoint": "https://portal-test3.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-01T03:21:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-03T20:52:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test3", + "name": "portal-test3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-05-01T22:40:28+00:00", "endpoint": "https://albertofori-canary-statistics-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-01T22:40:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-07T23:54:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-canary-statistics-test", + "name": "albertofori-canary-statistics-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-28T21:46:59+00:00", "endpoint": "https://albertofori-notification-euap-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-28T21:46:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-28T21:46:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-euap-test", + "name": "albertofori-notification-euap-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-09T23:19:34+00:00", "endpoint": "https://albertofori-notification-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-09T23:19:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-09T23:21:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-test", + "name": "albertofori-notification-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-25T17:21:39+00:00", "endpoint": "https://avgupta-appc-eus2euap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-25T17:21:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-03T01:44:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus2euap", + "name": "avgupta-appc-eus2euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "identity": {"type": "SystemAssigned", "principalId": + "76d7f893-7d86-4e17-8095-3428a0f517dd", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-04T21:19:03+00:00", + "endpoint": "https://cdnconfigs.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-04T21:19:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-15T22:47:29+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/cdnconfigs", + "name": "cdnconfigs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-11T14:25:58+00:00", "endpoint": "https://haiyiwen-eus2euap-0311.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-03-11T14:25:58+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-28T19:22:20+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2euap-0311", + "name": "haiyiwen-eus2euap-0311", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-05-19T18:00:03+00:00", "endpoint": "https://haiyiwen-euseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-05-19T18:00:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-05-15T23:43:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-euseuap", + "name": "haiyiwen-euseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-10-20T16:09:11+00:00", "endpoint": "https://haiyiwen-euseuap-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-20T16:09:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-10-20T16:09:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-euseuap-2", + "name": "haiyiwen-euseuap-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jimmyca-wus/providers/microsoft.managedidentity/userassignedidentities/jimmyca-mi-4": + {"principalId": "949c3968-a2e3-4bdc-b9fe-920f4d5a183f", "clientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, + "principalId": "8462ba54-c3ac-4a7e-ae69-f49bb0525330", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2020-02-14T00:05:52+00:00", + "endpoint": "https://jimmyca-eus2euap.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": null, + "createdByType": null, "createdAt": "2020-02-14T00:05:52+00:00", "lastModifiedBy": + null, "lastModifiedByType": null, "lastModifiedAt": "2021-08-05T15:50:34+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-eus2euap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-eus2euap", + "name": "jimmyca-eus2euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-07T20:43:21+00:00", "endpoint": "https://jiyu-canary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe8", + "name": "jiyu-pe8", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe8"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe-13", + "name": "jiyu-pe-13", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-13"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe-14", + "name": "jiyu-pe-14", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-14"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-07T20:43:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T23:14:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary", + "name": "jiyu-canary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-11-21T00:29:25+00:00", "endpoint": "https://storeincanary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-11-21T00:29:25+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-11-21T00:29:25+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/storeincanary", + "name": "StoreInCanary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-29T17:42:37+00:00", "endpoint": "https://testplugincanary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T17:42:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-29T17:42:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testplugincanary", + "name": "testplugincanary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedensouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-01T00:16:04+00:00", "endpoint": "https://appconfig-dotnetprovider-integrationtest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-01T00:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-24T22:30:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dotnetprovider-integrationtest/providers/Microsoft.AppConfiguration/configurationStores/appconfig-dotnetprovider-integrationtest", + "name": "appconfig-dotnetprovider-integrationtest", "tags": {}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "swedensouth", + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-09-19T21:45:59+00:00", + "endpoint": "https://jlinares-sws-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-09-19T21:45:59+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-09-19T21:46:00+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-sws-test", + "name": "jlinares-sws-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T17:22:44+00:00", "endpoint": "https://albertofori-notification-test-twn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T17:22:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-08T20:41:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-test-twn", + "name": "albertofori-notification-test-twn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-26T23:42:16+00:00", "endpoint": "https://jlinares-twn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-26T23:42:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-26T23:44:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-twn", + "name": "jlinares-twn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorthwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T20:26:19+00:00", "endpoint": "https://jlinares-twnw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T20:26:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-29T20:32:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-twnw", + "name": "jlinares-twnw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "israelnorthwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-12T01:32:16+00:00", "endpoint": "https://albertofori-notification-ilnw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-12T01:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-12T01:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-ilnw", + "name": "albertofori-notification-ilnw", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZtbT%2bNGFID%2fi1X1CRMIS6MiraopeNsUSKidKF2Ul4kzCU58Y8ZOsiD%2be885doZJoFJfzxuwyq6%2bPdeZ%2bXj1crWr7pJ8bbyrV28SRKPrYDAKxd048q68p6oqzVWnk8lcLlWm8upUvtRancZF1jH1zMQ6KaukyE2n15tfytnZL35Pzef%2bF6VifxarX%2f3Lbnx%2bPutdzmYXvU6pi00yV9p07pNYF6ZYVKeiLK%2bLfJEsay3xr%2brE7ndRVWhlfpNl4m%2fgc%2fDnX7tn3S8%2b%2fENn5z%2f%2fZNZJOSrWKv9qFHxubopax8o78ZhSrJIs%2bxFLP66NL8uy%2ba8AHAwMt4js6l1dKVMZDCEwBIIfw0LJCvJ9kaSV0giTVxuZpZuLZ7N70s%2fLp%2bdd1YYnGIfDh4BX0ZRSy0wBmgGIaDge%2fYlBElFf8OKwpeLPi4309xknxhG2sr5AKl5EVZHKPPFlrXxMO78LARoMQwgQwzRDgrpcajlXC62wF4xvKdtYxgSG2Nyv18Y%2fB5CmqXWZgWBGqV2pdIIzncYusDRDhhtLUyhUJBiQ30Px2L9jmF0z%2fZJiG74WA3Ej2v2FV16t6nwWP6m8WVv8ucoKP5ZtlfCbKphTNEqw%2bX4LxeA6YBkWk8vSPBUNy269mdWL5a4X10B1OwwDnrmGwcFh4sdbma8kwvwRhPdi8N05xPAqH8ShfFPNjBQBTXxeELj1%2b6VWWVJnzeqCXRlAJuI7vzVslSa5hAOonxe4ttBYEd%2fCPjRpXMZ4hcbC0LB8kTkQjW%2bxXHhxyHQGh7FiUejEtugLYGn2lwteMDYo6xWVC3A4KwzjiplpQyUzCW4CmJx0qcQrNO0ZjPZ9s41p348m%2fdFjEN6JwQ2%2fwrG5ZtItduW%2fxUiELENjSaiVPcsYaKg59wc33C4vLItJ8n0LeBhihvEOTZliVJrjDOM%2bFktsY80Cw7jk82ILGPZGjHdqyRpT6xiG2c2FrXugeT9hMry5sCALukfuR6EI7ngnWJLG%2b1bs7PyMy%2f9FYvnfB%2f%2f0r4e8Q5PtaNg%2fiD7PrdJWizIIMggmj4HAac%2f5RJm%2f0GFS8LwgsyGppcKY%2fNUf0h7Ju1BWSY4wLcQ4CsbigdcBrCx0JVNqxHi%2bb99a%2bHHgIaVM6yUEBEQK%2fQNYIjoWcx72Zmv2I3Ik%2bhMx4Ny%2fqi32L4eD8agHFpz1zRpGQeEH41zxwdVrlSySmF4p%2fSQFuLcTT%2bpMLJdaLWWl5mQAQWsT4T2Ao9F0L%2fVaafjR6%2fRQapp6V1OuWtPUO5m%2bt3NuJJ%2bqTYSE6TmOuPEc6E3E0cwnbhz%2fR3GyYWrsE26I75oTgdDUxWDhkzQ3ls9UJ6KytyFIxo3qg%2b5ESDS8eKYcrnyO8kQ4rfTENDbv2hPBtMs4OxiIy7H6RDzNEOqy43H1JwJxXg%2b5wZACRRAHEhQ3jM81KFs1HKeOfWeHAoEl9ECG4hae%2f9KhiMwVoriBYZBcJYqAPkpR3LBcLYqQxq0YxQ3kEzWKeGDNaeUobkT24hT0KEJxHktoeWMLhLXkgyLVJBxJUtxYnDsU274viKfZdeBrXnchNttaVYpYnHWH48HHMqEu1ZSQK0xxC9EHZapFOpCmuEHZGKE2RUCuOMWWhlocqFNNiPCXv%2bjRiy3PXp8ingOBii0SKFRE8y5RsUUBjYpQmmUHJxBbFFCpCMXeuLVPrGyBQED6FIjdbYjt1KhUEVJzUqW1lG14QKsilgOxii3NXq0iJOe8wLolgF5FPAeCFdsQgWLVRMeRrNjCgGZFMEeiFVseUK2IB25BuM8d1K2I5Ui4YhsbVK4I6EC64objaldE0771oHjFjQUPOa56RTyOfMWNx244e%2f2KgBxxiS0QaEvHLKxXAtSwCOhIxOIWIOca8aOKNfXevLd%2fAQ%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '365837' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - a27c00ca-e450-4a39-b746-67ec17b52b8f + - 3eda2df3-f9b0-46df-9928-655bf6995927 + - 0e7e93d2-6544-4d52-b0d7-3335816f807f + - 2c4937bb-94d3-45c3-873b-4b45c8edbbe3 + - b8318807-b26a-4507-89d7-cf42d259a535 + - 76c15d03-f7c2-4a0c-a02d-41d0875cc672 + - aa8b256b-b53a-4578-b34c-20877c22db9c + - 64902e61-7665-463c-b812-21983b8f870f + - ac89c3ce-ef11-4f43-b57c-e8a80c6af076 + - 577f8388-74a8-4cc7-95ee-7e3c4e8b4240 + - 05561f08-4553-4abd-a034-b6bdf6ee69cb + - 7f03e573-9087-42ac-ae52-4565d66ec7ad + - 2c1f103d-a026-4d0c-a65a-3a38d9213fcc + - fc37585f-2037-4c91-9f46-09a84edb0120 + - 12e8359b-8a19-43b3-b641-56bad3fd6306 + - 01f87685-049c-49ee-a0f7-0379620bbb8f + - 7d4839cc-edda-4651-8cf6-b53f70da83a9 + - 2f01bf7b-fb80-4ce2-a9f9-2ee6286a294f + - 676ed801-9724-4b7b-87b8-c921eb2c0cf6 + - c3a2c3a3-504f-404a-a808-41c667bd893c + - e91ec0cf-46c8-43f1-88fd-cbbfb6fe7457 + - 8fe67f68-2e2a-4e95-afe1-541af7ec0577 + - 15a87c7f-dc50-466a-8de6-cb06c47a9063 + - 624b4f3d-50e4-450c-9057-271e1f04bfb8 + - 46bfa1d2-c0ff-476d-9ebb-70fc47b499d1 + - 4f684ff7-dfb8-4181-a7f0-d32cc4a18e68 + - 71e01448-ee3f-4937-b1ee-953cfd8fd128 + - 64677de9-c1ba-4d00-98c2-cb16ad2487e7 + - cc1bd940-1d86-40db-9916-919811010e26 + - 428a27e7-af07-4508-b1ce-ceb690af3957 + - 91185676-cab3-4ce5-afaa-2c74bcf77dfb + - 02e4dfe4-6940-494f-90d3-02a730f1c766 + - 69ea06b1-b811-46a8-9d71-caf38f941c46 + - 00a8648f-468f-4021-8564-c50010d76af3 + - 3288a90b-d819-4b22-bd57-f1ac646b3a31 + - 5582e4c8-80f9-47a6-b1c2-6601be0bca6c + - 5cc608a7-fb71-4f76-ad77-dda369a0ab72 + - 9c22fdf0-95db-4523-b01c-d0adf3bd75d5 + - 6ac2829f-4942-413d-a332-cfbd107d7afc + - eb7e3097-b18f-44a8-ad66-6e0907385c8e + - f19ee45f-e31f-4da7-acc3-b4dfebcd5e68 + - 6c3b31b1-208d-40af-bb3a-3019b3e19d33 + - 8933b127-e8f1-4b95-b0dc-bada36791f31 + - 4849e1c1-dc3b-4c4b-b31e-81178b19831b + - 6b7ac8e3-d241-4eb9-a7c0-67e1540b782c + - 9863430a-c6d9-47cd-97ce-099530099550 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F692615D2FF34DEB8FCE814C3DA96590 Ref B: MAA201060513009 Ref C: 2025-08-15T03:19:09Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv list + Connection: + - keep-alive + ParameterSetName: + - -n --label + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZtbT%2BNGFID/i1X1CRMIS6MiraopeNsUSKidKF2Ul4kzCU58Y8ZOsiD%2Be885doZJoFJfzxuwyq6%2BPdeZ%2BXj1crWr7pJ8bbyrV28SRKPrYDAKxd048q68p6oqzVWnk8lcLlWm8upUvtRancZF1jH1zMQ6KaukyE2n15tfytnZL35Pzef%2BF6VifxarX/3Lbnx%2BPutdzmYXvU6pi00yV9p07pNYF6ZYVKeiLK%2BLfJEsay3xr%2BrE7ndRVWhlfpNl4m/gc/DnX7tn3S8%2B/ENn5z/ZNZJOSrWKv9qFHxubopax8o78ZhSrJIs%2BxFLP66NL8uy%2Ba8AHAwMt4js6l1dKVMZDCEwBIIfw0LJCvJ9kaSV0giTVxuZpZuLZ7N70s/Lp%2Bdd1YYnGIfDh4BX0ZRSy0wBmgGIaDge/YlBElFf8OKwpeLPi4309xknxhG2sr5AKl5EVZHKPPFlrXxMO78LARoMQwgQwzRDgrpcajlXC62wF4xvKdtYxgSG2Nyv18Y/B5CmqXWZgWBGqV2pdIIzncYusDRDhhtLUyhUJBiQ30Px2L9jmF0z/ZJiG74WA3Ej2v2FV16t6nwWP6m8WVv8ucoKP5ZtlfCbKphTNEqw%2BX4LxeA6YBkWk8vSPBUNy269mdWL5a4X10B1OwwDnrmGwcFh4sdbma8kwvwRhPdi8N05xPAqH8ShfFPNjBQBTXxeELj1%2B6VWWVJnzeqCXRlAJuI7vzVslSa5hAOonxe4ttBYEd/CPjRpXMZ4hcbC0LB8kTkQjW%2BxXHhxyHQGh7FiUejEtugLYGn2lwteMDYo6xWVC3A4KwzjiplpQyUzCW4CmJx0qcQrNO0ZjPZ9s41p348m/dFjEN6JwQ2/wrG5ZtItduW/xUiELENjSaiVPcsYaKg59wc33C4vLItJ8n0LeBhihvEOTZliVJrjDOM%2BFktsY80Cw7jk82ILGPZGjHdqyRpT6xiG2c2FrXugeT9hMry5sCALukfuR6EI7ngnWJLG%2B1bs7PyMy/9FYvnfB/0r4e8Q5PtaNg/iD7PrdJWizIIMggmj4HAac/5RJm/0GFS8LwgsyGppcKY/NUf0h7Ju1BWSY4wLcQ4CsbigdcBrCx0JVNqxHi%2Bb99a%2BHHgIaVM6yUEBEQK/QNYIjoWcx72Zmv2I3Ik%2BhMx4Ny/qi32L4eD8agHFpz1zRpGQeEH41zxwdVrlSySmF4p/SQFuLcTT%2BpMLJdaLWWl5mQAQWsT4T2Ao9F0L/VaafjR6/RQapp6V1OuWtPUO5m%2Bt3NuJJ%2BqTYSE6TmOuPEc6E3E0cwnbhz/R3GyYWrsE26I75oTgdDUxWDhkzQ3ls9UJ6KytyFIxo3qg%2B5ESDS8eKYcrnyO8kQ4rfTENDbv2hPBtMs4OxiIy7H6RDzNEOqy43H1JwJxXg%2B5wZACRRAHEhQ3jM81KFs1HKeOfWeHAoEl9ECG4hae/9KhiMwVoriBYZBcJYqAPkpR3LBcLYqQxq0YxQ3kEzWKeGDNaeUobkT24hT0KEJxHktoeWMLhLXkgyLVJBxJUtxYnDsU274viKfZdeBrXnchNttaVYpYnHWH48HHMqEu1ZSQK0xxC9EHZapFOpCmuEHZGKE2RUCuOMWWhlocqFNNiPCXv%2BjRiy3PXp8ingOBii0SKFRE8y5RsUUBjYpQmmUHJxBbFFCpCMXeuLVPrGyBQED6FIjdbYjt1KhUEVJzUqW1lG14QKsilgOxii3NXq0iJOe8wLolgF5FPAeCFdsQgWLVRMeRrNjCgGZFMEeiFVseUK2IB25BuM8d1K2I5Ui4YhsbVK4I6EC64objaldE0771oHjFjQUPOa56RTyOfMWNx244e/2KgBxxiS0QaEvHLKxXAtSwCOhIxOIWIOca8aOKNfXevLd/AQ%3D%3D + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:50+00:00", "endpoint": "https://featurefiltertestquqw5w3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestquqw5w3", + "name": "FeatureFilterTestquqw5w3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:30+00:00", "endpoint": "https://featurefiltertestvmh264rozmfl2rfdmwj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestvmh264rozmfl2rfdmwj", + "name": "FeatureFilterTestvmh264rozmfl2rfdmwj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://featurefiltertestwroox3kw3473yar2iys.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestwroox3kw3473yar2iys", + "name": "FeatureFilterTestwroox3kw3473yar2iys", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:17+00:00", "endpoint": "https://featurenamespacetest3zfo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetest3zfo", + "name": "FeatureNamespaceTest3zfo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-29T23:28:21+00:00", "endpoint": "https://featurenamespacetest43nd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3deuywmwdctmiw3s7hmjcw2tmqnelmu4o67k22372j3wxo6fmrhq2w3zzwjipe7l5/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetest43nd", + "name": "FeatureNamespaceTest43nd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://featurenamespacetestdm3m.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestdm3m", + "name": "FeatureNamespaceTestdm3m", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://featurenamespacetestl2rv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestl2rv", + "name": "FeatureNamespaceTestl2rv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:58:27+00:00", "endpoint": "https://featurenamespacetestomjxuvpkpmgwfeje.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:58:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:58:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestomjxuvpkpmgwfeje", + "name": "FeatureNamespaceTestomjxuvpkpmgwfeje", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:28+00:00", "endpoint": "https://featurenamespacetestooeq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestooeq", + "name": "FeatureNamespaceTestooeq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:36:08+00:00", "endpoint": "https://featurenamespacetestvjoivvcjifknwzao.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:36:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:36:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestvjoivvcjifknwzao", + "name": "FeatureNamespaceTestvjoivvcjifknwzao", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://featurenamespacetestxed3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestxed3", + "name": "FeatureNamespaceTestxed3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://featurenamespacetestysdks2bhjk7idleh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestysdks2bhjk7idleh", + "name": "FeatureNamespaceTestysdks2bhjk7idleh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:14+00:00", "endpoint": "https://featuretest3fn4mdqdwkvlndvuwfdofk3nr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretest3fn4mdqdwkvlndvuwfdofk3nr", + "name": "FeatureTest3fn4mdqdwkvlndvuwfdofk3nr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:20+00:00", "endpoint": "https://featuretest4o7tljrbfkuwj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretest4o7tljrbfkuwj", + "name": "FeatureTest4o7tljrbfkuwj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://featuretestckfolm256bht24scu2gxt2jxo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestckfolm256bht24scu2gxt2jxo", + "name": "FeatureTestckfolm256bht24scu2gxt2jxo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:38+00:00", "endpoint": "https://featuretestct5gfchdp63sj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestct5gfchdp63sj", + "name": "FeatureTestct5gfchdp63sj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:49:44+00:00", "endpoint": "https://featuretestk65tt5ts6zra7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:49:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:49:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk4hbkzkjzu2at45fpfafydyfdxvqrlfr3xepr3lp6uzumo5kdsauqvuew6f3tw62u/providers/Microsoft.AppConfiguration/configurationStores/featuretestk65tt5ts6zra7", + "name": "FeatureTestk65tt5ts6zra7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:15+00:00", "endpoint": "https://featuretestkqkahggahaewy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestkqkahggahaewy", + "name": "FeatureTestkqkahggahaewy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:14+00:00", "endpoint": "https://featuretesto4e67aajlsexw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretesto4e67aajlsexw", + "name": "FeatureTesto4e67aajlsexw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:29+00:00", "endpoint": "https://featuretestop22xb7epknx4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestop22xb7epknx4", + "name": "FeatureTestop22xb7epknx4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:31+00:00", "endpoint": "https://featuretestzx7ts5ebrspx23s53i5nb2k2y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestzx7ts5ebrspx23s53i5nb2k2y", + "name": "FeatureTestzx7ts5ebrspx23s53i5nb2k2y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-07-24T07:29:54+00:00", "endpoint": "https://freestore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-24T07:29:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:18:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestore", + "name": "freeStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-09T07:58:37+00:00", "endpoint": "https://haiyiwen-010925.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-01-09T07:58:37+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-01T21:11:00+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-010925", + "name": "haiyiwen-010925", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-16T19:14:44+00:00", "endpoint": "https://haiyiwen-eus-0116.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-01-16T19:14:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-06-11T15:57:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-0116", + "name": "haiyiwen-eus-0116", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-01-16T08:16:09+00:00", + "endpoint": "https://haiyiwen-eus-011625.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-011625/privateEndpointConnections/pe-test-eus2-011625", + "name": "pe-test-eus2-011625", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.Network/privateEndpoints/pe-test-eus2-011625"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-16T08:16:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:06:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-011625", + "name": "haiyiwen-eus-011625", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2024-03-11T14:22:45+00:00", "endpoint": "https://haiyiwen-eus-0311.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-03-11T14:22:45+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-04T23:30:27+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-0311", + "name": "haiyiwen-eus-0311", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-10T16:50:17+00:00", "endpoint": "https://haiyiwen-templatedeployment-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-10T16:50:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-10T16:50:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-templatedeployment-1", + "name": "haiyiwen-templatedeployment-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "640e6a52-a59d-48cf-a8d4-f41017c598fe", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-18T13:57:31+00:00", + "endpoint": "https://identitytest35gnbkkbe4fuezy67dlwn2y5.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:57:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:58:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytest35gnbkkbe4fuezy67dlwn2y5", + "name": "IdentityTest35gnbkkbe4fuezy67dlwn2y5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "34ffa33e-f25d-4c67-9253-c2d17c037adc", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-19T19:51:15+00:00", + "endpoint": "https://identitytestbe2akedryikn4m35wjkaqprj.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestbe2akedryikn4m35wjkaqprj", + "name": "IdentityTestbe2akedryikn4m35wjkaqprj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "438e333f-bb2e-497c-97b8-dd202b78c026", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-08-14T05:50:01+00:00", + "endpoint": "https://identitytestcs7kbf253whm.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestcs7kbf253whm", + "name": "IdentityTestcs7kbf253whm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "5a4a8ed8-9446-4999-93d2-9818ea8132a9", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T03:43:27+00:00", + "endpoint": "https://identitytestf72x2di6qyer.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestf72x2di6qyer", + "name": "IdentityTestf72x2di6qyer", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "b0ee3229-1ce2-40d1-a196-b8459b9f9d6b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T04:32:16+00:00", + "endpoint": "https://identitytesthm4vi6lxafkx.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytesthm4vi6lxafkx", + "name": "IdentityTesthm4vi6lxafkx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "20901f43-0e74-480b-9d79-80b7a5bda9d3", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T02:53:34+00:00", + "endpoint": "https://identitytestkpchhiqxtnsq.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestkpchhiqxtnsq", + "name": "IdentityTestkpchhiqxtnsq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "42e1eeb5-d772-47fd-a51c-ab9664dbc084", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-18T13:35:06+00:00", + "endpoint": "https://identitytestpt6bwjon56pcoo6xapfdkyur.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:35:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:35:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestpt6bwjon56pcoo6xapfdkyur", + "name": "IdentityTestpt6bwjon56pcoo6xapfdkyur", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7x3az6ip3htuovmj7yywt4wnb4e2pzvtynszyldonhf5uvclyl523rjteqosjhkqw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/UserAssignedIdentityten5": + {"principalId": "b7e8662e-ea87-44a8-a499-f612e314174c", "clientId": "c555e5da-6354-4a44-acaa-c1226a17c985"}}, + "principalId": "91287d71-e497-4d5c-8782-9eb2d16347f4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-12-03T08:41:53+00:00", + "endpoint": "https://identitytestqlutj2gls4u7.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:53+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7x3az6ip3htuovmj7yywt4wnb4e2pzvtynszyldonhf5uvclyl523rjteqosjhkqw/providers/Microsoft.AppConfiguration/configurationStores/identitytestqlutj2gls4u7", + "name": "IdentityTestqlutj2gls4u7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "209c3dad-96ee-4da7-bf9b-81bcb4c6ee89", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T02:22:10+00:00", + "endpoint": "https://identitytestwha7v4vki3m5.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestwha7v4vki3m5", + "name": "IdentityTestwha7v4vki3m5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:59:07+00:00", "endpoint": "https://importexporttest4buijfjw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:59:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:59:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdewrmekwlmmelzxyujxxqakoibx7umiujirxwe7z5lqr6mkvdzyuw5ovod645k3ab/providers/Microsoft.AppConfiguration/configurationStores/importexporttest4buijfjw", + "name": "ImportExportTest4buijfjw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:23+00:00", "endpoint": "https://importexporttestcnu3plvdikjy7dxroazf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestcnu3plvdikjy7dxroazf", + "name": "ImportExportTestcnu3plvdikjy7dxroazf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:15+00:00", "endpoint": "https://importexporttestfllunlafc2qqdvoasyuk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestfllunlafc2qqdvoasyuk", + "name": "ImportExportTestfllunlafc2qqdvoasyuk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:07+00:00", "endpoint": "https://importexporttestgkjpjcmg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:50:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:50:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestgkjpjcmg", + "name": "ImportExportTestgkjpjcmg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:41:57+00:00", "endpoint": "https://importexporttestjozvptem.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:41:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs4u4depezol5gm5zemiy4hklc4cl7kot6w4mdlqmsd3nlq6bhmbo47vaorof2y7on/providers/Microsoft.AppConfiguration/configurationStores/importexporttestjozvptem", + "name": "ImportExportTestjozvptem", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:00:30+00:00", "endpoint": "https://importexporttestoggywcna.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:00:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:00:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestoggywcna", + "name": "ImportExportTestoggywcna", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:07+00:00", "endpoint": "https://importexporttestukq4e3atuwnwdnrzlyim.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestukq4e3atuwnwdnrzlyim", + "name": "ImportExportTestukq4e3atuwnwdnrzlyim", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:39:40+00:00", "endpoint": "https://importexporttestyouwfl6v.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:39:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:39:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestyouwfl6v", + "name": "ImportExportTestyouwfl6v", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://importtest7ful2grtebgoiq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtest7ful2grtebgoiq", + "name": "ImportTest7ful2grtebgoiq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://importtestgiddobrgr672gjpl3hucqravfy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestgiddobrgr672gjpl3hucqravfy", + "name": "ImportTestgiddobrgr672gjpl3hucqravfy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://importtestlypau4klicvvgj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestlypau4klicvvgj", + "name": "ImportTestlypau4klicvvgj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://importtestq7zk6uhonoio5k.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestq7zk6uhonoio5k", + "name": "ImportTestq7zk6uhonoio5k", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:44:47+00:00", "endpoint": "https://importtesttcbikylpv6ng27xb3emuessgdi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:44:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:44:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtesttcbikylpv6ng27xb3emuessgdi", + "name": "ImportTesttcbikylpv6ng27xb3emuessgdi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:11+00:00", "endpoint": "https://importtestvguwb2vces34ma.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestvguwb2vces34ma", + "name": "ImportTestvguwb2vces34ma", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://importtestxpbvk6phmolm2x.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestxpbvk6phmolm2x", + "name": "ImportTestxpbvk6phmolm2x", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T14:07:21+00:00", "endpoint": "https://importtestxx236biyz2eshdvim62cvnctxv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T14:07:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T14:07:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestxx236biyz2eshdvim62cvnctxv", + "name": "ImportTestxx236biyz2eshdvim62cvnctxv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d0a289d3-184f-4608-bc59-c38f24b695a8", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-05-01T18:05:52+00:00", + "endpoint": "https://jimmyca-ai-sample.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-05-01T18:05:52+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-06-23T02:01:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-ai-sample", + "name": "jimmyca-ai-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-16T17:00:19+00:00", "endpoint": "https://jimmyca-eus-rep.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-16T17:00:19+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-01-06T21:48:03+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-eus-rep", + "name": "jimmyca-eus-rep", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-04-04T02:23:55+00:00", + "endpoint": "https://jiyu-createtest5.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, "privateEndpointConnections": null, + "publicNetworkAccess": "Disabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 3, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-04T02:23:55+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-04-04T02:24:08+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-policytest/providers/Microsoft.AppConfiguration/configurationStores/jiyu-createtest5", + "name": "jiyu-createtest5", "tags": {"tag": "tagv"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-03T21:56:21+00:00", "endpoint": "https://jiyu-eus.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-eus", + "name": "jiyu-pe-eus", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-eus"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-weu", + "name": "jiyu-pe-weu", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-weu"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-eus2", + "name": "jiyu-pe-eus2", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-eus2"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-test", + "name": "jiyu-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-03T21:56:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-03T21:56:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus", + "name": "jiyu-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2023-02-15T23:49:31+00:00", "endpoint": "https://jiyu-eus1.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://jiyu-keyvault1.vault.azure.net/keys/kekeke", + "identityClientId": null}}, "privateEndpointConnections": [], "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-15T23:49:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-08T23:43:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus1", + "name": "jiyu-eus1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "fbaa111b-8b39-4f75-906d-b4300c88aef1", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-02-16T01:50:00+00:00", + "endpoint": "https://jiyu-eus3.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus3/privateEndpointConnections/staticip-test", + "name": "staticip-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/staticip-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-16T01:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T00:08:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus3", + "name": "jiyu-eus3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-18T23:30:42+00:00", "endpoint": "https://jiyu-policyteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-18T23:30:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-19T00:01:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-policytest2/providers/Microsoft.AppConfiguration/configurationStores/jiyu-policyteststore", + "name": "jiyu-policyteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-29T21:47:07+00:00", "endpoint": "https://jiyu-teststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore1/privateEndpointConnections/jiyu-pe-5", + "name": "jiyu-pe-5", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-5"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T21:47:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-02T22:07:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore1", + "name": "jiyu-teststore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-03-19T23:10:19+00:00", "endpoint": "https://jiyu-throttle-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-03-19T23:10:19+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2022-10-11T23:32:37+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-throttle-1", + "name": "jiyu-throttle-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-17T00:37:26+00:00", "endpoint": "https://jlinares-appconfig-eastus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-17T00:37:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-17T01:55:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-eventgridtests/providers/Microsoft.AppConfiguration/configurationStores/jlinares-appconfig-eastus", + "name": "jlinares-appconfig-eastus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-11-18T20:26:57+00:00", "endpoint": "https://jlinares-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-18T20:26:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-02T01:15:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-eus", + "name": "jlinares-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-15T05:37:24+00:00", "endpoint": "https://junbchenconfig-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-pe/privateEndpointConnections/junbchen-pe-test", + "name": "junbchen-pe-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/junbchen-pe-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-15T05:37:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-15T08:42:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-pe", + "name": "junbchenconfig-pe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-19T04:06:47+00:00", "endpoint": "https://juniwang-app-ev2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-19T04:06:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-19T04:06:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-aks/providers/Microsoft.AppConfiguration/configurationStores/juniwang-app-ev2", + "name": "juniwang-app-ev2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d25770c8-9687-44f3-a3bd-cca223b9c6a4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-08T03:33:40+00:00", + "endpoint": "https://juniwang-appc.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-08T03:33:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T23:59:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-aks/providers/Microsoft.AppConfiguration/configurationStores/juniwang-appc", + "name": "juniwang-appc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-30T16:59:23+00:00", "endpoint": "https://kjeong-store-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-30T16:59:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-30T16:59:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/kjeong-store-eus", + "name": "kjeong-store-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://kvrevisiontest4fqq5hbnxzmfbwe5dby2vr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontest4fqq5hbnxzmfbwe5dby2vr", + "name": "KVRevisionTest4fqq5hbnxzmfbwe5dby2vr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://kvrevisiontest4kyrrschro.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontest4kyrrschro", + "name": "KVRevisionTest4kyrrschro", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://kvrevisiontestanuibrjieg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestanuibrjieg", + "name": "KVRevisionTestanuibrjieg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://kvrevisiontestibwkfz57qn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestibwkfz57qn", + "name": "KVRevisionTestibwkfz57qn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:10+00:00", "endpoint": "https://kvrevisiontestkoz2orto53hamn6kwqjrwi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestkoz2orto53hamn6kwqjrwi", + "name": "KVRevisionTestkoz2orto53hamn6kwqjrwi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:57+00:00", "endpoint": "https://kvrevisiontestsnib44xkg5dbxlix2d6pep.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestsnib44xkg5dbxlix2d6pep", + "name": "KVRevisionTestsnib44xkg5dbxlix2d6pep", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:33+00:00", "endpoint": "https://kvrevisiontestuexzu42fm2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestuexzu42fm2", + "name": "KVRevisionTestuexzu42fm2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://kvrevisiontestxsqvwqjrg6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestxsqvwqjrg6", + "name": "KVRevisionTestxsqvwqjrg6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:02:56+00:00", "endpoint": "https://kvsetimporttest67l2slzrs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:02:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:02:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttest67l2slzrs", + "name": "KVSetImportTest67l2slzrs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:52:40+00:00", "endpoint": "https://kvsetimporttest7fzhph6k3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:52:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:52:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttest7fzhph6k3", + "name": "KVSetImportTest7fzhph6k3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://kvsetimporttestdfvwuuwjhqdkccxnon3h5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestdfvwuuwjhqdkccxnon3h5", + "name": "KVSetImportTestdfvwuuwjhqdkccxnon3h5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:04+00:00", "endpoint": "https://kvsetimporttestdtjdjob3d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtkn533s5bkfkpe7zbxjwrxpfrqlsvdzfa42gkxliahqseuj7hheaq37kwjdupgrzz/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestdtjdjob3d", + "name": "KVSetImportTestdtjdjob3d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:44+00:00", "endpoint": "https://kvsetimporttestjetl2c5hb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2d54inm2sz2hhdcwlskpsbcf2rqtxjk35s6cz3paltnbiyqomhp2huz4qkwzxygfs/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestjetl2c5hb", + "name": "KVSetImportTestjetl2c5hb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://kvsetimporttestlfet64gx7k247aqey5idx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestlfet64gx7k247aqey5idx", + "name": "KVSetImportTestlfet64gx7k247aqey5idx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T06:02:59+00:00", "endpoint": "https://kvsetimporttestn2hbyeqob.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T06:02:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T06:02:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestn2hbyeqob", + "name": "KVSetImportTestn2hbyeqob", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:42:14+00:00", "endpoint": "https://kvsetimporttestobgriqz5h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:42:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:42:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestobgriqz5h", + "name": "KVSetImportTestobgriqz5h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:07+00:00", "endpoint": "https://kvsetimporttestv6g2yjvgh3vknvlvyhyk6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:56:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:56:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestv6g2yjvgh3vknvlvyhyk6", + "name": "KVSetImportTestv6g2yjvgh3vknvlvyhyk6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:30:57+00:00", "endpoint": "https://kvsetimporttestx2c3iqwtw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:30:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:30:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestx2c3iqwtw", + "name": "KVSetImportTestx2c3iqwtw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:45:02+00:00", "endpoint": "https://kvtest56m7lyhkxttu5o7cy6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:45:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:45:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtest56m7lyhkxttu5o7cy6", + "name": "KVTest56m7lyhkxttu5o7cy6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://kvtest7gxwoslebimyurrpzo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtest7gxwoslebimyurrpzo", + "name": "KVTest7gxwoslebimyurrpzo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:47:50+00:00", "endpoint": "https://kvtesta5gfdkk3ofsqlz3axj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:47:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:47:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6tafb7kmkszhmrkpiaqncvjdbzopdvao2unlvdouj4qwnswxhzvwhnqwtuvfhap5f/providers/Microsoft.AppConfiguration/configurationStores/kvtesta5gfdkk3ofsqlz3axj", + "name": "KVTesta5gfdkk3ofsqlz3axj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:27+00:00", "endpoint": "https://kvtestaabkjvmmvryoyrcym4f23ipzwbr3il.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestaabkjvmmvryoyrcym4f23ipzwbr3il", + "name": "KVTestaabkjvmmvryoyrcym4f23ipzwbr3il", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:48+00:00", "endpoint": "https://kvtestazuhrmngjidjfiubou.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestazuhrmngjidjfiubou", + "name": "KVTestazuhrmngjidjfiubou", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:01+00:00", "endpoint": "https://kvtestblkljn3if2ed3lee4c.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu6kv5zqu66qjrcvxa7phtrzraaastvxrgb5ba5ksua3wgiaybmuxxco24istvbllk/providers/Microsoft.AppConfiguration/configurationStores/kvtestblkljn3if2ed3lee4c", + "name": "KVTestblkljn3if2ed3lee4c", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:58+00:00", "endpoint": "https://kvtestcncxmq2fygiiwpxlm5irfpslm6rv4y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestcncxmq2fygiiwpxlm5irfpslm6rv4y", + "name": "KVTestcncxmq2fygiiwpxlm5irfpslm6rv4y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:45+00:00", "endpoint": "https://kvtestctemdbzrufgk7gou63.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsjj2m7spcrfqtj5d6xghazzzkbnunaevcb2w5d3aw7nsxyv5srgumrba3fxgc5fj/providers/Microsoft.AppConfiguration/configurationStores/kvtestctemdbzrufgk7gou63", + "name": "KVTestctemdbzrufgk7gou63", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://kvtestddruwaekub4w4vikfhmilya5pnoqp6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestddruwaekub4w4vikfhmilya5pnoqp6", + "name": "KVTestddruwaekub4w4vikfhmilya5pnoqp6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:45:36+00:00", "endpoint": "https://kvtestdzk745w7veqm4qhmg7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:45:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:45:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestdzk745w7veqm4qhmg7", + "name": "KVTestdzk745w7veqm4qhmg7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:54:25+00:00", "endpoint": "https://kvtestedguv5zz26ia6jl5j6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:54:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:54:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestedguv5zz26ia6jl5j6", + "name": "KVTestedguv5zz26ia6jl5j6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://kvtestgypdqe3asrj2yppdaw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestgypdqe3asrj2yppdaw", + "name": "KVTestgypdqe3asrj2yppdaw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:38+00:00", "endpoint": "https://kvtesthhewfemq55gzr7f2ut.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyh2hpoaraulrpisivp7wvr6kewphm76xkiphd3smodzvjlevaaoetk2e5fmwkbvn6/providers/Microsoft.AppConfiguration/configurationStores/kvtesthhewfemq55gzr7f2ut", + "name": "KVTesthhewfemq55gzr7f2ut", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:13+00:00", "endpoint": "https://kvtesthtjrqiylsqskz3c6d5ejdr4mbl6buh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesthtjrqiylsqskz3c6d5ejdr4mbl6buh", + "name": "KVTesthtjrqiylsqskz3c6d5ejdr4mbl6buh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:57:03+00:00", "endpoint": "https://kvtestiaobbatslphjvsdvem.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:57:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:57:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgngwosihwuvyfcdzfp2vjsulqt7fl4vqupolm4lnvn7eojzu3kntls4upzts4b2mbd/providers/Microsoft.AppConfiguration/configurationStores/kvtestiaobbatslphjvsdvem", + "name": "KVTestiaobbatslphjvsdvem", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=3ZDdSsQwEIXfJYhXpmnr1mJhkbIIXlgEu971Jj%2bz3Wy3ScikRSx9d%2bMPuM%2fg5Zw5c4bvLMTAe3jWZkBSLeSxbvdvLanIMQSHFWMjN7yHEUxI%2bMfkIZF2ZDgJlF67oK1BVpaq4CK9oyUoRTcAkgoJ97TIZZaJshDitmTO21kr8MgaLb1FewhJ7dzOmoPuJ8%2b%2fopi8nNpgPeADd5rO8S7ut3mab2h8lGbXVzhot7cDmO0wB8CguRWCBzy742lGNcNI1ps%2fuBfzZM8qIkaR%2b7Huew89D6C%2bMyJw%2fdqQH3%2fD%2fQA%2bSkv320dHqu4%2fNNKRlayf"}' + headers: + cache-control: + - no-cache + content-length: + - '114080' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 3524e97d-8c44-4383-95e5-b61bfec8dabb + - 1d24f1c6-8ee7-46e2-aeac-2397027b6429 + - 67b3fb17-0506-4721-a707-c213e691c264 + - 105f9553-2104-49f2-8593-ff62b7d856cb + - bb4489b4-a0e7-4a9a-943b-c263e452b2c4 + - 7cfddf89-c519-4c0d-8d33-550fb3c57f0a + - d6b11f8f-3d78-476c-8ad5-29847b3a64b0 + - 0ec4ab22-0c01-43df-853d-1a0cd89318de + - 957fad28-e8bd-4e65-8f17-1f7814255006 + - 178862a1-eee3-4058-a242-bda64448eb13 + - 90c3f47c-8ff9-4908-8f24-708aedaeb458 + - 8271e9d3-8635-4317-a077-feb18ebc7fbe + - 81c6cc95-9ca5-498c-8cdf-16abf809100d + - b6cca095-3d5a-49ab-9236-103a5fe44018 + - eb2d0bfa-fb4b-4d5b-9c67-c6137c06411b + - b917c7d4-3fe4-4c6f-9a6e-8e4194a43b50 + - b69ac9f4-e198-47c6-ae5f-70547fe8313b + - b2c53b56-603f-4af9-bb44-615470650a2b + - 9c8b6292-9a26-4a81-a788-7c9f3691b4b3 + - 5dd7e97c-6d82-4b34-85af-8e86f69316ac + - b81708cf-abab-48db-978d-2c0ee8e05d1a + - a865d187-f249-485a-9556-c3d78120b33e + - 9815122d-ef5a-4101-942c-e04c71032438 + - 5b1332a8-4439-4721-a130-07683c2bb88b + - 581089c1-305e-488c-aea4-2cb948163fdf + - 02ed06c1-628c-441b-af97-d5675a0c78a4 + - c0f56ae2-bd2c-44c8-a884-d078337b82aa + - 3f717efa-39fb-4155-95d2-7e0b875f7771 + - b9a0dec6-1886-46e9-b4af-3c9e8016e59d + - 0280e5fd-df63-412b-920f-56282b5cf013 + - e208d7cb-9ed6-4ef6-9e94-408df3232229 + - b0fafc0a-c77f-4397-8f6f-6851ed353ab9 + - 0f15cea3-5e3b-462b-b33c-7ff4ae3c7068 + - 7842993c-1e40-418d-9ea1-97ea1c1a6a69 + - 3a8acfea-2d9a-4467-a073-9cd1992acb18 + - b23650ad-e465-41c4-bdc6-15da32cb4292 + - 0847e784-998e-4fb8-b415-107f563d7e90 + - 37235064-4725-44d0-b2f8-343fe01f8730 + - 965d2225-f91f-4625-959b-813a4952b80b + - 4adf9123-f2b4-41d4-9d6f-01e05c46d73e + - 6e4828b8-a10e-4eb6-aa52-34b2ae9e85fc + - e23db516-55f7-4f4b-a439-52e80d49052f + - 5af1bb45-dfae-40e2-857e-8a42783c3c35 + - 2bddef71-2a50-491a-b4f2-8421d24cfb17 + - 734c6e68-b75d-4dc5-9afa-8ed6cbd0560b + - c7fe4a29-9156-4645-852b-ebe38c4c0452 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 006AD9F8D0864C40A268972E2231602D Ref B: MAA201060515021 Ref C: 2025-08-15T03:19:12Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv list + Connection: + - keep-alive + ParameterSetName: + - -n --label + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=3ZDdSsQwEIXfJYhXpmnr1mJhkbIIXlgEu971Jj%2Bz3Wy3ScikRSx9d%2BMPuM/g5Zw5c4bvLMTAe3jWZkBSLeSxbvdvLanIMQSHFWMjN7yHEUxI%2BMfkIZF2ZDgJlF67oK1BVpaq4CK9oyUoRTcAkgoJ97TIZZaJshDitmTO21kr8MgaLb1FewhJ7dzOmoPuJ8%2B/opi8nNpgPeADd5rO8S7ut3mab2h8lGbXVzhot7cDmO0wB8CguRWCBzy742lGNcNI1ps/uBfzZM8qIkaR%2B7Huew89D6C%2BMyJw/dqQH3/D/QA%2BSkv320dHqu4/NNKRlayf + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:51+00:00", "endpoint": "https://kvtestihwc3syiqee5ah3iga.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestihwc3syiqee5ah3iga", + "name": "KVTestihwc3syiqee5ah3iga", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:13+00:00", "endpoint": "https://kvtestizmnigytm42qanhxha.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestizmnigytm42qanhxha", + "name": "KVTestizmnigytm42qanhxha", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:42+00:00", "endpoint": "https://kvtestkopv2uhhschtzb2e5n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestkopv2uhhschtzb2e5n", + "name": "KVTestkopv2uhhschtzb2e5n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://kvtestl2ormjtchf7btc3f3u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvhvtc3xrd7c3vvwzmfi4ufblyqdjqcnuenotltaz3gnpg6ixy5v4czw52bht6tnea/providers/Microsoft.AppConfiguration/configurationStores/kvtestl2ormjtchf7btc3f3u", + "name": "KVTestl2ormjtchf7btc3f3u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:50+00:00", "endpoint": "https://kvtestloxzjt7t3tfagqhl2ap6xxngz4wpgd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestloxzjt7t3tfagqhl2ap6xxngz4wpgd", + "name": "KVTestloxzjt7t3tfagqhl2ap6xxngz4wpgd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://kvtesto5vmioemxphsuub3xx7r4sky45ni2f.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesto5vmioemxphsuub3xx7r4sky45ni2f", + "name": "KVTesto5vmioemxphsuub3xx7r4sky45ni2f", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:46+00:00", "endpoint": "https://kvtestp2kbuun66d6ps473pg7ysw3epzlwut.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestp2kbuun66d6ps473pg7ysw3epzlwut", + "name": "KVTestp2kbuun66d6ps473pg7ysw3epzlwut", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:09+00:00", "endpoint": "https://kvtestpj2t6uk6lvtsd7iun2vykrabrj5qjo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestpj2t6uk6lvtsd7iun2vykrabrj5qjo", + "name": "KVTestpj2t6uk6lvtsd7iun2vykrabrj5qjo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://kvtestppk7lrbah7ynxlhe33.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestppk7lrbah7ynxlhe33", + "name": "KVTestppk7lrbah7ynxlhe33", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://kvtestrsei3hg3nqsaujkzgg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestrsei3hg3nqsaujkzgg", + "name": "KVTestrsei3hg3nqsaujkzgg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:43+00:00", "endpoint": "https://kvtestsd77jfbv4d3uzcytfp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg4rrldloh2p7oo6rzuoqwvws4cpfwypu6bzbhqkwdnn3rwkl4dafchtml6zrkztbm/providers/Microsoft.AppConfiguration/configurationStores/kvtestsd77jfbv4d3uzcytfp", + "name": "KVTestsd77jfbv4d3uzcytfp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:38+00:00", "endpoint": "https://kvtesttptetw6qztfw3gv674.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesttptetw6qztfw3gv674", + "name": "KVTesttptetw6qztfw3gv674", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:34:30+00:00", "endpoint": "https://kvtestuycl4et7tf5eb7lsdu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:34:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:34:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestuycl4et7tf5eb7lsdu", + "name": "KVTestuycl4et7tf5eb7lsdu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://kvtestv3dtl6bonwids7ib5x.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestv3dtl6bonwids7ib5x", + "name": "KVTestv3dtl6bonwids7ib5x", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:24:19+00:00", "endpoint": "https://kvtestycmo2q63cxt6vvf67r.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:24:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:24:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestycmo2q63cxt6vvf67r", + "name": "KVTestycmo2q63cxt6vvf67r", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-20T02:14:07+00:00", "endpoint": "https://linglingye-appconfig-quickstart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-20T02:14:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-20T02:14:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linglingye-rg/providers/Microsoft.AppConfiguration/configurationStores/linglingye-appconfig-quickstart", + "name": "linglingye-appconfig-quickstart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-08T20:43:45+00:00", "endpoint": "https://mbtestappconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-08T20:43:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-09T22:26:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/mbtestappconfig", + "name": "mbTestAppConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-05T13:16:53+00:00", "endpoint": "https://mgich-agent-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-05T13:16:53+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T13:16:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-agent-demo", + "name": "mgich-agent-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-07-20T13:49:51+00:00", "endpoint": "https://mgich-demo-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-demo-store/privateEndpointConnections/mgich-demo-privatendpoint", + "name": "mgich-demo-privatendpoint", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.Network/privateEndpoints/mgich-demo-privatendpoint"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-20T13:49:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-29T09:44:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-demo-store", + "name": "Mgich-Demo-store", "tags": {"Tag1": "Value1"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-28T08:17:37+00:00", "endpoint": "https://mgich-dev-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-28T08:17:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-28T08:17:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-dev-store", + "name": "mgich-dev-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "userAssignedIdentities": + {}, "principalId": "7262de24-6e9f-4834-9f65-b1cb524e252e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-08-11T21:32:20+00:00", + "endpoint": "https://mgich-ff.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": null}}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-ff/privateEndpointConnections/mgich", + "name": "mgich", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.Network/privateEndpoints/mgich"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T21:32:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-26T15:07:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-ff", + "name": "Mgich-ff", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-27T23:35:45+00:00", "endpoint": "https://mgich-largestoretest-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-27T23:35:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-11T12:53:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-largestoretest-1", + "name": "Mgich-largestoretest-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-10T07:08:17+00:00", "endpoint": "https://mgich-readerstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-10T07:08:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-26T14:56:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-readerstore", + "name": "mgich-readerstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "8123be57-97f1-4182-b1b1-f6af700545c4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-10-04T16:57:29+00:00", + "endpoint": "https://mgich-stage-1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-04T16:57:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-04T17:38:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-stage-1", + "name": "mgich-stage-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-07-01T10:23:28+00:00", "endpoint": "https://mgich-store-no-experiments.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-01T10:23:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T17:05:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-store-no-experiments", + "name": "mgich-store-no-experiments", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-18T09:11:22+00:00", "endpoint": "https://mgich-store-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-18T09:11:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-18T09:11:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-store-pe", + "name": "mgich-store-pe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-04T18:17:49+00:00", "endpoint": "https://mgich-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-04T18:17:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-04T18:17:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-test2", + "name": "mgich-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mgich-userassignedIdentity": + {"principalId": "fe7ce57e-8668-4bc2-860c-a55b5ed3c20c", "clientId": "d272d921-c6fa-4394-889a-acb85a9de520"}, + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mgich-user2identity": + {"principalId": "d0c6a0b5-d9e2-4936-99e1-93f83c03fba5", "clientId": "246f2df7-bc14-43b6-bbab-292e9aa837c5"}}, + "principalId": "1faff273-6296-453e-8213-93e36511bafd", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2021-11-24T08:29:23+00:00", + "endpoint": "https://mgich-teststore.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": "d272d921-c6fa-4394-889a-acb85a9de520"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Enabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-11-24T08:29:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-30T12:33:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore", + "name": "Mgich-teststore", "tags": {"Tag1": "value 1"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-17T12:28:40+00:00", "endpoint": "https://mgich-teststore-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-17T12:28:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-11T13:06:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore-1", + "name": "mgich-teststore-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-14T09:20:39+00:00", "endpoint": "https://mgich-teststore-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-14T09:20:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-28T14:34:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore-3", + "name": "mgich-teststore-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-10T19:22:51+00:00", "endpoint": "https://mgich-teststore4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-10T19:22:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-03T09:10:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore4", + "name": "mgich-teststore4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-02T20:20:55+00:00", "endpoint": "https://mgich-teststsore-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-02T20:20:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-21T18:13:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststsore-3", + "name": "mgich-teststsore-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "a1c20165-034a-4ba2-8061-e0d4d16f24ae", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-20T22:42:06+00:00", + "endpoint": "https://mgmttest72er3mgxhdoinaqa.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnpau7zjt464gtz2wleqi36hu74ql74n5vvw35zhk7oaljwlxgx4oeph77eqifl5o5/providers/Microsoft.AppConfiguration/configurationStores/mgmttest72er3mgxhdoinaqa", + "name": "MgmtTest72er3mgxhdoinaqa", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "47a9f6ab-3291-480b-b56d-1e14e36050ea", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-19T19:55:12+00:00", + "endpoint": "https://mgmttestc7g3l35dzryuxxgvp4lglc5dizmw.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestc7g3l35dzryuxxgvp4lglc5dizmw", + "name": "MgmtTestc7g3l35dzryuxxgvp4lglc5dizmw", "tags": {"key": "value"}}, + {"type": "Microsoft.AppConfiguration/configurationStores", "location": "eastus", + "identity": {"type": "SystemAssigned", "principalId": "044952b4-d72c-472c-abf1-211644477cf9", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2025-07-10T04:40:17+00:00", "endpoint": "https://mgmttestdceucmwowzkwqmkq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:40:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:40:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestdceucmwowzkwqmkq", + "name": "MgmtTestdceucmwowzkwqmkq", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c635cc37-a672-4b57-bb8c-97c563ef1faa", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T05:32:22+00:00", + "endpoint": "https://mgmttestsmrvmso36npc46q2.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T05:32:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T05:32:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestsmrvmso36npc46q2", + "name": "MgmtTestsmrvmso36npc46q2", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c04393c4-b4ca-425c-ac71-d6fb8fd0e8c8", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T03:01:00+00:00", + "endpoint": "https://mgmttesttu422dgcjrdktv2i.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:01:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:01:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttesttu422dgcjrdktv2i", + "name": "MgmtTesttu422dgcjrdktv2i", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "029554f7-2d78-4e89-b35e-0def16f0607e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-12-03T08:41:56+00:00", + "endpoint": "https://mgmttesttyxczkyhxc6obdc3.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rga7cq7pqntyql7xxdl7ybrm5fu4ghzzzka7tz73vc26jiwpbnwrsibgsfkq7abl7dl/providers/Microsoft.AppConfiguration/configurationStores/mgmttesttyxczkyhxc6obdc3", + "name": "MgmtTesttyxczkyhxc6obdc3", "tags": {"Env": "Prod"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-13T21:11:18+00:00", "endpoint": "https://my-app-config-test-4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-13T21:11:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-13T21:11:18+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testresourcegroup/providers/Microsoft.AppConfiguration/configurationStores/my-app-config-test-4", + "name": "my-app-config-test-4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:47:59+00:00", "endpoint": "https://namingconventiontest5i2i.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:47:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:47:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontest5i2i", + "name": "NamingConventionTest5i2i", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:44+00:00", "endpoint": "https://namingconventiontestcmrm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestcmrm", + "name": "NamingConventionTestcmrm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:04+00:00", "endpoint": "https://namingconventiontestf6wx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdufzxonazjyfqql7zhvtnmptvqxvyghhi3piqf3w6fqffjd6elyw54aufbq4nohxe/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestf6wx", + "name": "NamingConventionTestf6wx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:14+00:00", "endpoint": "https://namingconventiontestr4z27s6inps2qahi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestr4z27s6inps2qahi", + "name": "NamingConventionTestr4z27s6inps2qahi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:57:50+00:00", "endpoint": "https://namingconventiontestzmts.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:57:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:57:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestzmts", + "name": "NamingConventionTestzmts", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:10+00:00", "endpoint": "https://newfmimport6jvm63gclqtfi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimport6jvm63gclqtfi", + "name": "NewFmImport6jvm63gclqtfi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:28+00:00", "endpoint": "https://newfmimport7breg65bpfkmk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimport7breg65bpfkmk", + "name": "NewFmImport7breg65bpfkmk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:42+00:00", "endpoint": "https://newfmimportcbirfdrxwcazblccfrcc56tr3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportcbirfdrxwcazblccfrcc56tr3", + "name": "NewFmImportcbirfdrxwcazblccfrcc56tr3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:13+00:00", "endpoint": "https://newfmimportifwskvg7yatnll65fmcw4lbvu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportifwskvg7yatnll65fmcw4lbvu", + "name": "NewFmImportifwskvg7yatnll65fmcw4lbvu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:23+00:00", "endpoint": "https://newfmimportiqle44dc5w75t.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportiqle44dc5w75t", + "name": "NewFmImportiqle44dc5w75t", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:21+00:00", "endpoint": "https://newfmimportycrjzhir3yc2jvaw5gj73xsh3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportycrjzhir3yc2jvaw5gj73xsh3", + "name": "NewFmImportycrjzhir3yc2jvaw5gj73xsh3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}, + "principalId": "2ace8798-912e-4525-8706-b2ea02068ac0", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-11-09T07:55:32+00:00", + "endpoint": "https://newstore.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-11-09T07:55:32+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-20T17:32:25+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/newstore", + "name": "NewStore", "tags": {"new ": "tag"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-07T17:33:44+00:00", "endpoint": "https://pipelinetask-teststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-07T17:33:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-07T17:33:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pipelinetask-canarytest/providers/Microsoft.AppConfiguration/configurationStores/pipelinetask-teststore", + "name": "pipelinetask-teststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-06T17:03:43+00:00", "endpoint": "https://portal-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-06T17:03:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T01:05:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test", + "name": "portal-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:40+00:00", "endpoint": "https://pubnetworknull26cngh42hn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5zneawsaijjrfwkpifdvbui3mpjvvozsommbvv2fvmzfoypa2gtwxcmwba2em7tm/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknull26cngh42hn", + "name": "PubNetworkNull26cngh42hn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:58+00:00", "endpoint": "https://pubnetworknullfgy4ldwvco.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T03:50:58+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T03:51:36+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknullfgy4ldwvco", + "name": "PubNetworkNullfgy4ldwvco", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:42:29+00:00", "endpoint": "https://pubnetworknulllk4mio7jtn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T04:42:29+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T04:43:09+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknulllk4mio7jtn", + "name": "PubNetworkNulllk4mio7jtn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:46+00:00", "endpoint": "https://pubnetworknullu2jkrdwwh23ireje5pi64g.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-03-19T19:56:46+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-19T19:57:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknullu2jkrdwwh23ireje5pi64g", + "name": "PubNetworkNullu2jkrdwwh23ireje5pi64g", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:41:50+00:00", "endpoint": "https://pubnetworktrueawirkzjx5u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T04:41:50+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T04:41:50+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktrueawirkzjx5u", + "name": "PubNetworkTrueawirkzjx5u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:18+00:00", "endpoint": "https://pubnetworktruelryl4o66fv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T03:50:18+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T03:50:18+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktruelryl4o66fv", + "name": "PubNetworkTruelryl4o66fv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:03+00:00", "endpoint": "https://pubnetworktrueqinrxqnezhqbvgsjjmoug5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-03-19T19:56:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-19T19:56:03+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktrueqinrxqnezhqbvgsjjmoug5", + "name": "PubNetworkTrueqinrxqnezhqbvgsjjmoug5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:41:57+00:00", "endpoint": "https://pubnetworktruet6yhv5rp5h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-12-03T08:41:57+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-12-03T08:41:57+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5zneawsaijjrfwkpifdvbui3mpjvvozsommbvv2fvmzfoypa2gtwxcmwba2em7tm/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktruet6yhv5rp5h", + "name": "PubNetworkTruet6yhv5rp5h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "493023af-0d46-48de-a070-eef831383228", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-11T12:40:56+00:00", + "endpoint": "https://replicastored2uyjofor3ac.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:40:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:40:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbkeprji7tmcxwyspsy2tof6gcb5zs6qod2fnn4tdtnbofbo3zzvokji5siqpbx3fv/providers/Microsoft.AppConfiguration/configurationStores/replicastored2uyjofor3ac", + "name": "ReplicaStored2uyjofor3ac", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-10T23:14:57+00:00", "endpoint": "https://rossgrambo-app-config-backup.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-10T23:14:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-10T23:35:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-app-config-backup", + "name": "rossgrambo-app-config-backup", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-20T22:16:45+00:00", "endpoint": "https://rossgrambo-app-configuration.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T22:16:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-11T00:24:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-app-configuration", + "name": "rossgrambo-app-configuration", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-08T18:53:19+00:00", "endpoint": "https://rossgrambo-flag-migration-testing.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-08T18:53:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T18:53:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-flag-migration-testing", + "name": "rossgrambo-flag-migration-testing", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-19T02:11:08+00:00", "endpoint": "https://rossgrambo-hackathon.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-19T02:11:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-19T02:11:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-hackathon/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-hackathon", + "name": "rossgrambo-hackathon", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-10T22:48:21+00:00", "endpoint": "https://samiconfigs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-10T22:48:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-04T18:58:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/samiconfigs", + "name": "samiconfigs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-01T18:44:00+00:00", "endpoint": "https://sdfsafdfdsffsf-albertofori.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-01T18:44:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-01T18:44:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/sdfsafdfdsffsf-albertofori", + "name": "sdfsafdfdsffsf-albertofori", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-04-06T23:31:37+00:00", "endpoint": "https://softdelete-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T23:31:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-15T06:08:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo", + "name": "softdelete-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/softdelete-demo-identity-2": + {"principalId": "c3b06559-ac00-409d-a3ec-183f811cfd0d", "clientId": "e6304037-2130-4a66-a0b5-0cef9e5fef38"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-06T22:35:49+00:00", + "endpoint": "https://softdelete-demo-cmk.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://softdelete-demo-keyvault.vault.azure.net/keys/key", + "identityClientId": "e6304037-2130-4a66-a0b5-0cef9e5fef38"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T22:35:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-07T23:34:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo-cmk", + "name": "softdelete-demo-cmk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/softdelete-demo-identity": + {"principalId": "d0286683-fe54-4978-b632-4879b57da219", "clientId": "e557af90-eee7-425b-9667-56b1faaaa184"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-06T23:32:42+00:00", + "endpoint": "https://softdelete-demo-purge-protection.azconfig.io", "encryption": + {"keyVaultProperties": {"keyIdentifier": "https://softdelete-demo-keyvault.vault.azure.net/keys/key", + "identityClientId": "e557af90-eee7-425b-9667-56b1faaaa184"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T23:32:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-06T23:33:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo-purge-protection", + "name": "softdelete-demo-purge-protection", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:16:25+00:00", "endpoint": "https://softdelete-retention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:16:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-14T23:15:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-retention", + "name": "softdelete-retention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:17:09+00:00", "endpoint": "https://softdelete-retention2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:17:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T05:18:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-retention2", + "name": "softdelete-retention2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:38:47+00:00", "endpoint": "https://source4w3kjzil5tkygz7f33.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:38:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:38:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source4w3kjzil5tkygz7f33", + "name": "Source4w3kjzil5tkygz7f33", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:17+00:00", "endpoint": "https://source4zg3mwqbsl6uidbigf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source4zg3mwqbsl6uidbigf", + "name": "Source4zg3mwqbsl6uidbigf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:49:30+00:00", "endpoint": "https://source5y7wpvryybmlgn255k.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:49:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:49:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source5y7wpvryybmlgn255k", + "name": "Source5y7wpvryybmlgn255k", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-29T23:28:22+00:00", "endpoint": "https://source756e3z4lxwuqzamkys.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtbmculosotxi5tvycr3ucsvrlgjvhqhtuqxxp5zjy4l3uns3dflynpwxjhqy2lti2/providers/Microsoft.AppConfiguration/configurationStores/source756e3z4lxwuqzamkys", + "name": "Source756e3z4lxwuqzamkys", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:41+00:00", "endpoint": "https://source7tkscrlyge2z2dwfnt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzsjv5ucgfl5xb3rkxbfhwzw2l663dsuksodvay6hol3lrqlffhbimwua3mxqneoxp/providers/Microsoft.AppConfiguration/configurationStores/source7tkscrlyge2z2dwfnt", + "name": "Source7tkscrlyge2z2dwfnt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:14+00:00", "endpoint": "https://sourcebonjncplltnwyxi3wxtbzajj3qudp7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcebonjncplltnwyxi3wxtbzajj3qudp7", + "name": "Sourcebonjncplltnwyxi3wxtbzajj3qudp7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:59:30+00:00", "endpoint": "https://sourceevcycu7vqqrwldss2d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:59:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:59:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceevcycu7vqqrwldss2d", + "name": "Sourceevcycu7vqqrwldss2d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:01+00:00", "endpoint": "https://sourceiawig3smul3natozz7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwyttwmni2xmbsaxrtp64sja6rdh2ocxcprrc5pwdogqijazx7f4vhljo5qfanoryn/providers/Microsoft.AppConfiguration/configurationStores/sourceiawig3smul3natozz7", + "name": "Sourceiawig3smul3natozz7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:38+00:00", "endpoint": "https://sourcesarqiu3ulixdcvfmne.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcesarqiu3ulixdcvfmne", + "name": "Sourcesarqiu3ulixdcvfmne", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:00+00:00", "endpoint": "https://sourcevsycmtag5msdxrntg4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguznozpjynfgaebftsnnrdc52h2scgoorpr6unkhktfxrcwsulo6qvsxb6b6j2jkfn/providers/Microsoft.AppConfiguration/configurationStores/sourcevsycmtag5msdxrntg4", + "name": "Sourcevsycmtag5msdxrntg4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:13+00:00", "endpoint": "https://sourcewh3zdqwqjr2ycwla34mzr57iwkd646.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewh3zdqwqjr2ycwla34mzr57iwkd646", + "name": "Sourcewh3zdqwqjr2ycwla34mzr57iwkd646", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:21+00:00", "endpoint": "https://sourcewrcreicjxj7w2yk2kl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewrcreicjxj7w2yk2kl", + "name": "Sourcewrcreicjxj7w2yk2kl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:42+00:00", "endpoint": "https://sourcewxcru6myjz22xt3cry.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewxcru6myjz22xt3cry", + "name": "Sourcewxcru6myjz22xt3cry", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://sourcexi35d6xknwvlpgfjdcjpfm4tbisikl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcexi35d6xknwvlpgfjdcjpfm4tbisikl", + "name": "Sourcexi35d6xknwvlpgfjdcjpfm4tbisikl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:04+00:00", "endpoint": "https://sourceykdeluxupgutssmtp4s2ndonnpmrfx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceykdeluxupgutssmtp4s2ndonnpmrfx", + "name": "Sourceykdeluxupgutssmtp4s2ndonnpmrfx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:27+00:00", "endpoint": "https://sourceyxduf5goewbviumeya.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceyxduf5goewbviumeya", + "name": "Sourceyxduf5goewbviumeya", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-02-14T14:44:25+00:00", "endpoint": "https://southcentralus-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-14T14:44:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-01-15T15:17:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/richardmuniu-appcfg-test/providers/Microsoft.AppConfiguration/configurationStores/southcentralus-test-store", + "name": "southcentralus-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-11T16:55:25+00:00", "endpoint": "https://spring-geo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T16:55:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-18T22:19:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-geo", + "name": "Spring-Geo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:03+00:00", "endpoint": "https://strictimporttest3vthtdkmhnlsf2jhpwqm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttest3vthtdkmhnlsf2jhpwqm", + "name": "StrictImportTest3vthtdkmhnlsf2jhpwqm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:01+00:00", "endpoint": "https://strictimporttesta5qjw7z4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiclp5jbwimqqqoxl5bbqjkggleqcwdnipdk4do7nmywdhkiwb6gnm6h3esjl6ekmb/providers/Microsoft.AppConfiguration/configurationStores/strictimporttesta5qjw7z4", + "name": "StrictImportTesta5qjw7z4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:47:05+00:00", "endpoint": "https://strictimporttestczhpt6di.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:47:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:47:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestczhpt6di", + "name": "StrictImportTestczhpt6di", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:04+00:00", "endpoint": "https://strictimporttestdwyif42s.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestdwyif42s", + "name": "StrictImportTestdwyif42s", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://strictimporttestj4kovvpa.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg43nb3b6jwngiura5rclypvjmdx62odg4tdxrdaytutt75yx2quuszpfdvp57kadz7/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestj4kovvpa", + "name": "StrictImportTestj4kovvpa", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://strictimporttestsagt6n6f6guarkkvv4ul.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestsagt6n6f6guarkkvv4ul", + "name": "StrictImportTestsagt6n6f6guarkkvv4ul", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://strictimporttestt36qwioiuroazvvivyy5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestt36qwioiuroazvvivyy5", + "name": "StrictImportTestt36qwioiuroazvvivyy5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:57:02+00:00", "endpoint": "https://strictimporttestvbzh72sl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:57:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:57:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestvbzh72sl", + "name": "StrictImportTestvbzh72sl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T20:57:06+00:00", "endpoint": "https://test-azconfig-net.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T20:57:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T20:57:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-net", + "name": "test-azconfig-net", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZDdSsQwEIXfJYhXpmnr1mJhkSKCFxbBXe96k5%2fZGmqTMJkusqXvbnQFfQUv58z5ZjhnYQ4%2b6Mm6MbJmYQ%2ftbv%2b6Yw17IwqxEWKSTg4wgaNMnmaETPtJxFlFjTaQ9S6KujaVVPkNr8EYvgHQXGm45VWpi0LVlVLXtQjoj9YARtFZjT76A2VtCPfeHewwo%2fw6JfTfaUceId7JYPkxcWm%2fLfNyw9OjvLi8iKMNez%2bC2xJE4vJ0hrkDYuvVb6pn9%2bjfTcqWRIlTOwwIgyQw33BK2r507OzvJI6ASVr6nyJ61vT%2fuoqerWz9BA%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '110916' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:17 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 20471fba-216c-4e5f-91c9-be62e2bdef7b + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 0387A74E0EBD4464A084CC8112184665 Ref B: MAA201060514017 Ref C: 2025-08-15T03:19:16Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv list + Connection: + - keep-alive + ParameterSetName: + - -n --label + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZDdSsQwEIXfJYhXpmnr1mJhkSKCFxbBXe96k5/ZGmqTMJkusqXvbnQFfQUv58z5ZjhnYQ4%2B6Mm6MbJmYQ/tbv%2B6Yw17IwqxEWKSTg4wgaNMnmaETPtJxFlFjTaQ9S6KujaVVPkNr8EYvgHQXGm45VWpi0LVlVLXtQjoj9YARtFZjT76A2VtCPfeHewwo/w6JfTfaUceId7JYPkxcWm/LfNyw9OjvLi8iKMNez%2BC2xJE4vJ0hrkDYuvVb6pn9%2BjfTcqWRIlTOwwIgyQw33BK2r507OzvJI6ASVr6nyJ61vT/uoqerWz9BA%3D%3D + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T20:57:06+00:00", "endpoint": "https://test-azconfig-net-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T20:57:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T20:57:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-net-provider", + "name": "test-azconfig-net-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T21:01:29+00:00", "endpoint": "https://test-azconfig-python.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T21:01:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T21:01:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-python", + "name": "test-azconfig-python", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T21:01:29+00:00", "endpoint": "https://test-azconfig-python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T21:01:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T21:01:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-python-provider", + "name": "test-azconfig-python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-03-18T03:11:21+00:00", "endpoint": "https://test-deletion.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-03-18T03:11:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-03-18T03:11:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/richardmuniu-appcfg-test/providers/Microsoft.AppConfiguration/configurationStores/test-deletion", + "name": "test-deletion", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-09T22:36:24+00:00", "endpoint": "https://test-notification.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-09T22:36:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-09T23:17:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/test-notification", + "name": "test-notification", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-28T11:18:48+00:00", "endpoint": "https://test-revision-retention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-28T11:18:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T14:41:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/test-revision-retention", + "name": "test-revision-retention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-10T21:04:55+00:00", "endpoint": "https://test-template.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-10T21:04:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-10T21:04:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/test-template", + "name": "test-template", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-27T17:01:21+00:00", "endpoint": "https://testapp-1001.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-09-27T17:01:21+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-09-27T17:01:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-1001", + "name": "testapp-1001", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-27T16:59:45+00:00", "endpoint": "https://testapp-8778.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-8778/privateEndpointConnections/myconnection", + "name": "myconnection", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-AppConfiguration-6086/providers/Microsoft.Network/privateEndpoints/endpointxyz7285"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-27T16:59:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-27T16:59:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-8778", + "name": "testapp-8778", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T09:32:10+00:00", "endpoint": "https://testbug.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T09:32:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T13:16:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testbug", + "name": "testBug", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-13T17:58:05+00:00", "endpoint": "https://testcopilot.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-13T17:58:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:49:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testcopilot", + "name": "testCopilot", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-15T06:19:24+00:00", "endpoint": "https://testdev.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 172800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-15T06:19:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-25T08:00:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testdev", + "name": "testdev", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-25T21:04:05+00:00", "endpoint": "https://testdevsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-25T21:04:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-25T21:04:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/testdevsku", + "name": "testdevsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-23T07:57:12+00:00", "endpoint": "https://testrevisionretention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-23T07:57:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-23T07:58:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testrevisionretention", + "name": "testrevisionretention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-24T22:30:44+00:00", "endpoint": "https://teststestestestes.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-24T22:30:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-24T22:30:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-hackathon/providers/Microsoft.AppConfiguration/configurationStores/teststestestestes", + "name": "teststestestestes", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T07:43:13+00:00", "endpoint": "https://testtkeyvalueretention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T07:43:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:51:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testtkeyvalueretention", + "name": "testtkeyvalueretention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T07:29:41+00:00", "endpoint": "https://testuhyvu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 691200, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T07:29:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:45:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testuhyvu", + "name": "testuhyvu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-03-13T19:25:01+00:00", "endpoint": "https://webscoutscantarget.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-03-13T19:25:01+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-03-13T19:25:01+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/webscoutscantarget", + "name": "WebScoutScanTarget", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:21:32+00:00", "endpoint": "https://xuxu-sd-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:21:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-11T07:03:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-1", + "name": "xuxu-sd-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T21:37:20+00:00", "endpoint": "https://xuxu-sd-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T21:37:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T21:37:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-2", + "name": "xuxu-sd-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T21:41:29+00:00", "endpoint": "https://xuxu-sd-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T21:41:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T21:42:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-3", + "name": "xuxu-sd-3", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZDdSsQwEIXfJYhXpmm7W4OFRYoIXlgEu971Jj%2bzNdQmYZIuxdJ3N%2f6AvoKXc%2bacGb6zEgtLfDR2DKReyX3THV86UpPXGH2oGZuEFQNMYGMm3meETLmJhVkGhcZH42xgnOtKyPyactCa7gEUlQpuaFWqopC8knLHmUd3NhowsNYodMGdYtZ4f%2bfsyQwzis9TTP2duugQwq3whp5TLu0PZV7uaXqUF5cXYTT%2b6Eawh2VeZho03ZHt6pfmyT64N52YkihwaoYBYRAR9FcoETbPLfn2twJHwCSt%2fU8BPan7f1lBTzayfQA%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '22507' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 3eab4054-4c67-436a-9a8d-b2f7c390b10b + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C19ED65A99C24132B700587F4C6D469F Ref B: MAA201060514029 Ref C: 2025-08-15T03:19:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv list + Connection: + - keep-alive + ParameterSetName: + - -n --label + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZDdSsQwEIXfJYhXpmm7W4OFRYoIXlgEu971Jj%2BzNdQmYZIuxdJ3N/6AvoKXc%2BacGb6zEgtLfDR2DKReyX3THV86UpPXGH2oGZuEFQNMYGMm3meETLmJhVkGhcZH42xgnOtKyPyactCa7gEUlQpuaFWqopC8knLHmUd3NhowsNYodMGdYtZ4f%2BfsyQwzis9TTP2duugQwq3whp5TLu0PZV7uaXqUF5cXYTT%2B6Eawh2VeZho03ZHt6pfmyT64N52YkihwaoYBYRAR9FcoETbPLfn2twJHwCSt/U8BPan7f1lBTzayfQA%3D + response: + body: + string: '{"value": []}' + headers: + cache-control: + - no-cache + content-length: + - '13' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - a1558865-d91f-46a5-a7f7-7158c478ba5b + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 31ED401F74074A249065C7933852D616 Ref B: MAA201060515039 Ref C: 2025-08-15T03:19:22Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n --label + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/ConfigMapImportTest000002/listKeys?api-version=2024-06-01 + response: + body: + string: '{"value": [{"id": "sanitized_id1", "name": "Primary", "value": "sanitized_secret1", + "connectionString": "Endpoint=https://configmapimporttest5eotn.azconfig.io;Id=sanitized_id1;Secret=sanitized_secret1", + "lastModified": "2025-08-15T03:11:28+00:00", "readOnly": false}, {"id": "sanitized_id2", + "name": "Secondary", "value": "sanitized_secret2", "connectionString": "Endpoint=https://configmapimporttest5eotn.azconfig.io;Id=sanitized_id2;Secret=sanitized_secret2", + "lastModified": "2025-08-15T03:11:28+00:00", "readOnly": false}, {"id": "sanitized_id3", + "name": "Primary Read Only", "value": "sanitized_secret3", "connectionString": + "Endpoint=https://configmapimporttest5eotn.azconfig.io;Id=sanitized_id3;Secret=sanitized_secret3", + "lastModified": "2025-08-15T03:11:28+00:00", "readOnly": true}, {"id": "sanitized_id4", + "name": "Secondary Read Only", "value": "sanitized_secret4", "connectionString": + "Endpoint=https://configmapimporttest5eotn.azconfig.io;Id=sanitized_id4;Secret=sanitized_secret4", + "lastModified": "2025-08-15T03:11:28+00:00", "readOnly": true}], "nextLink": + null}' + headers: + cache-control: + - no-cache + content-length: + - '1079' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:25 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/654f6483-9881-4e5c-a5ca-a547b6c9af22 + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: FFD14E149E144FF78371FD9264431795 Ref B: MAA201060515009 Ref C: 2025-08-15T03:19:24Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/vnd.microsoft.appconfig.kvset+json, application/problem+json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI.APPCONFIG/2.75.0 azsdk-python-appconfiguration/unknown Python/3.12.10 + (Windows-11-10.0.26100-SP0) + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Aug, 15 2025 03:19:25.527497 GMT + method: GET + uri: https://configmapimporttest5eotn.azconfig.io/kv?key=%2A&label=ConfigMapImport&api-version=2023-11-01&$Select= + response: + body: + string: '{"etag":"1RUy0fccIF8rigr824FA2GTdzZloj_KzVrV7NqEUjLY","items":[{"etag":"tDYO5MS_7tKvHw98o396kVttFzUGl4_0HO4ZAb3N1oo","key":"test/app.name","label":"ConfigMapImport","content_type":null,"value":"testapp","tags":{},"locked":false,"last_modified":"2025-08-15T03:19:07+00:00"},{"etag":"RBbCgYT0lBdkIEfeMSjsXB8SklWtJQHHeuGcCZ3XvJY","key":"test/database.host","label":"ConfigMapImport","content_type":null,"value":"localhost","tags":{},"locked":false,"last_modified":"2025-08-15T03:19:07+00:00"},{"etag":"fG1mzvfpjnLM2A6_rpCJe-DiO1o_YCUep2X2oQ4Vero","key":"test/database.port","label":"ConfigMapImport","content_type":null,"value":"5432","tags":{},"locked":false,"last_modified":"2025-08-15T03:19:08+00:00"}]}' + headers: + access-control-allow-origin: + - '*' + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:26 GMT + etag: + - '"1RUy0fccIF8rigr824FA2GTdzZloj_KzVrV7NqEUjLY"' + strict-transport-security: + - max-age=31536000; includeSubDomains + sync-token: + - zAJw6V16=MjoxNyMzMzI3NDYwOA==;sn=33274608 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01 + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-06-26T18:04:42+00:00", "endpoint": "https://abc12332112.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-06-26T18:04:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-28T11:10:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/abc12332112", + "name": "abc12332112", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T17:30:35+00:00", "endpoint": "https://albertofori-notification-wcus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-10T17:30:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-10T18:29:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-wcus", + "name": "albertofori-notification-wcus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/spring-id-test": + {"principalId": "bbc27095-cfb5-4239-b4f1-b94dc4f76a33", "clientId": "b281689e-4907-4519-a49d-345edbc61f9e"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-06-13T17:35:52+00:00", + "endpoint": "https://mametcal-app-config.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": 604800, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "free"}, "systemData": {"createdBy": null, "createdByType": + null, "createdAt": "2019-06-13T17:35:52+00:00", "lastModifiedBy": "test@example.com", + "lastModifiedByType": "User", "lastModifiedAt": "2024-12-30T21:03:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/mametcal-app-config", + "name": "mametcal-app-config", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-08-06T20:23:35+00:00", "endpoint": "https://secondsource.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-08-06T20:23:35+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-01-31T22:47:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/secondsource", + "name": "SecondSource", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "identity": {"type": "SystemAssigned", "userAssignedIdentities": + {}, "principalId": "72bee6eb-3e9f-41e8-a903-8d7d2b988b1c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-01-06T17:54:47+00:00", + "endpoint": "https://avgupta-appc-cus.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://keyvault-importexport.vault.azure.net/keys/TestCMK", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-01-06T17:54:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-08T13:30:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-cus", + "name": "avgupta-appc-cus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-02-12T21:35:04+00:00", "endpoint": "https://eventgridteststonexuxu1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-12T21:35:04+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-12T21:35:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/eventgridteststonexuxu1", + "name": "EventGridTestStoneXuxu1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-05-31T18:07:37+00:00", "endpoint": "https://jimmyca-cus-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-05-31T18:07:37+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2022-10-13T16:53:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cus-appconfig", + "name": "jimmyca-cus-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-12T08:13:43+00:00", "endpoint": "https://0000-junbchen-pe-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/0000-junbchen-pe-test/privateEndpointConnections/0000-junbchen-pe", + "name": "0000-junbchen-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/0000-junbchen-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-12T08:13:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-12T08:34:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/0000-junbchen-pe-test", + "name": "0000-junbchen-pe-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-25T22:56:46+00:00", "endpoint": "https://albertofori-dataproxy-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Enabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-25T22:56:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T01:00:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-dataproxy-test", + "name": "albertofori-dataproxy-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-08-10T22:30:45+00:00", "endpoint": "https://albertofori-free-test1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-08-10T22:30:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-10T02:00:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-free-test1", + "name": "albertofori-free-test1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T18:47:12+00:00", "endpoint": "https://albertofori-sas-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T18:47:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-05T23:32:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sas-test", + "name": "albertofori-sas-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:26:11+00:00", "endpoint": "https://albertofori-sku-test-free.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-28T07:26:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T09:41:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free", + "name": "albertofori-sku-test-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:27:05+00:00", "endpoint": "https://albertofori-sku-test-free2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2023-11-28T07:27:05+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-11-28T07:27:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free2", + "name": "albertofori-sku-test-free2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:29:16+00:00", "endpoint": "https://albertofori-sku-test-free3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2023-11-28T07:29:16+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-11-28T07:29:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free3", + "name": "albertofori-sku-test-free3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-10T09:30:13+00:00", "endpoint": "https://albertofori-test-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-10T09:30:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-12T18:51:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-test", + "name": "albertofori-test-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-23T18:52:42+00:00", "endpoint": "https://albertoforitestanino.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-23T18:52:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-23T18:52:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforitestanino", + "name": "albertoforitestanino", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-01-06T23:44:03+00:00", "endpoint": "https://appconfig-spring-sample.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-01-06T23:44:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-01-06T23:44:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfig-spring-sample", + "name": "appconfig-spring-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "e656642d-deb0-4d1a-abc0-d8e85268cecf", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-19T02:05:10+00:00", + "endpoint": "https://appconfigaitzstf3sdnjs.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2332800, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": null, + "createdByType": null, "createdAt": "2024-11-19T02:05:10+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-05T19:12:11+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/appconfigaitzstf3sdnjs", + "name": "appconfigaitzstf3sdnjs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-07T19:32:28+00:00", "endpoint": "https://appconfigdemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-07T19:32:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-07T19:32:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigdemo", + "name": "AppConfigDemo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:47:53+00:00", "endpoint": "https://appconfigstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:47:53+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-01T09:39:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigstore", + "name": "AppConfigStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-07T19:09:14+00:00", "endpoint": "https://appconfigteststorexuxu1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-07T19:09:14+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-07T19:09:14+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/appconfigteststorexuxu1", + "name": "AppConfigTestStoreXuxu1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:47:27+00:00", "endpoint": "https://appconfigurationstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:47:27+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-01T09:43:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigurationstore", + "name": "AppConfigurationStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "765e8797-defc-4cbc-987a-72eb3dc71d5c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-01-04T00:25:57+00:00", + "endpoint": "https://avgupta-appc-wus.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-01-04T00:25:57+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-01-05T00:33:42+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus", + "name": "avgupta-appc-wus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T18:18:09+00:00", "endpoint": "https://avgupta-appc-wus-free.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2024-10-23T18:18:09+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-10-23T18:18:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus-free", + "name": "avgupta-appc-wus-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-05-18T20:18:01+00:00", "endpoint": "https://avgupta-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-05-18T20:18:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-01T17:37:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appconfig", + "name": "avgupta-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-10-03T16:36:18+00:00", "endpoint": "https://avgupta-ru-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-03T16:36:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-10-03T16:36:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-ru-test", + "name": "avgupta-ru-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2018-11-30T04:05:08+00:00", "endpoint": "https://configbuilderdemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2018-11-30T04:05:08+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-01T04:54:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigloadtestrg/providers/Microsoft.AppConfiguration/configurationStores/configbuilderdemo", + "name": "ConfigBuilderDemo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-09-23T17:46:44+00:00", "endpoint": "https://configprovider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 864000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2020-09-23T17:46:44+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-08-07T16:42:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-configprovider-rg/providers/Microsoft.AppConfiguration/configurationStores/configprovider", + "name": "configprovider", "tags": {"tagcli": "valcli", "tag-portal": "val-portal"}}, + {"type": "Microsoft.AppConfiguration/configurationStores", "location": "westus", + "properties": {"provisioningState": "Succeeded", "creationDate": "2021-10-05T20:53:37+00:00", + "endpoint": "https://configprovider-free.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": 604800, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "free"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2021-10-05T20:53:37+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-03-04T19:11:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-configprovider-rg/providers/Microsoft.AppConfiguration/configurationStores/configprovider-free", + "name": "configprovider-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2019-02-25T18:52:34+00:00", "endpoint": "https://configstoredemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-02-25T18:52:34+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-21T23:58:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azcfg-demo/providers/Microsoft.AppConfiguration/configurationStores/configstoredemo", + "name": "ConfigStoreDemo", "tags": {"Owner": "Zhenlan"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-12-01T10:43:03+00:00", + "endpoint": "https://cwanjauteststore.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", "identityClientId": + "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": null, + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-12-01T10:43:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:35:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjauteststore", + "name": "cwanjauTestStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-17T18:06:57+00:00", "endpoint": "https://demos.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": [], "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-17T18:06:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-04T21:25:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/demos", + "name": "demos", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-01-08T21:18:22+00:00", "endpoint": "https://dotnetprovider-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-01-08T21:18:22+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-01-08T21:18:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/dotnetprovider-test", + "name": "dotnetprovider-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:43:44+00:00", "endpoint": "https://example.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:43:44+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-06T16:56:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/example", + "name": "example", "tags": {"222": "222", "test": "123"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-12T08:30:46+00:00", "endpoint": "https://garywang-create.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-12T08:30:46+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-12T08:30:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-create", + "name": "garywang-create", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2018-08-21T07:04:28+00:00", "endpoint": "https://garywang-demo-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2018-08-21T07:04:28+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2018-11-13T21:18:47+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-demo-store", + "name": "garywang-demo-store", "tags": {"123": "456", "789": "000"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "westus", "identity": + {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jimmyca-wus/providers/microsoft.managedidentity/userassignedidentities/jimmyca-mi-4": + {"principalId": "949c3968-a2e3-4bdc-b9fe-920f4d5a183f", "clientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, + "principalId": "763db0ea-df44-4d4c-ac02-c8e5f44b126a", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-02-20T19:44:43+00:00", + "endpoint": "https://jimmyca-wus-appconfig.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jimmyca-demo.vault.azure.net/keys/jimmyca-demo-key", + "identityClientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-02-20T19:44:43+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-03-27T22:06:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-wus-appconfig", + "name": "jimmyca-wus-appconfig", "tags": {"abc": "def", "ghi": "jkl"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "westus", "identity": + {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, + "principalId": "d92f5b75-4c8c-458f-a50a-7d2b587bec2b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-04-07T23:44:00+00:00", + "endpoint": "https://jiyu-createtest6.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + null}}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-07T23:44:00+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T23:14:41+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-createtest6", + "name": "jiyu-createtest6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-17T19:32:40+00:00", "endpoint": "https://jiyu-devsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-17T19:32:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-21T17:59:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-devsku", + "name": "jiyu-devsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jiyu/providers/microsoft.managedidentity/userassignedidentities/jiyu-useridentity-1": + {"principalId": "634a239c-d987-4892-83a4-5a4c987e3606", "clientId": "2e0d90a5-7909-4831-8508-31cbc111cb52"}}, + "principalId": "25fe3433-a7bd-4643-add3-d4f5ccfc68ea", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-11-07T18:45:10+00:00", + "endpoint": "https://jiyu-store.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "publicNetworkAccess": "Enabled", + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-11-07T18:45:10+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-21T21:53:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-store", + "name": "JIYU-stORE", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-01T18:44:56+00:00", "endpoint": "https://jiyu-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-01T18:44:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-01T18:44:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test", + "name": "jiyu-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-08T22:49:58+00:00", "endpoint": "https://jiyu-test-create.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-08T22:49:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-08T22:49:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test-create", + "name": "jiyu-test-create", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-03T00:48:41+00:00", "endpoint": "https://jiyu-test1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-03T00:48:41+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-08-06T17:01:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test1", + "name": "jiyu-test1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-14T17:14:39+00:00", "endpoint": "https://jiyu-testcreate.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-14T17:14:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-21T21:52:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-testcreate", + "name": "jiyu-testcreate", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "None", "userAssignedIdentities": + {}}, "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-14T19:22:00+00:00", + "endpoint": "https://jiyu-testresource.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://henlitestcmk.vault.azure.net/keys/henlicmk", "identityClientId": + "0147171d-f0b9-4c5a-ae56-c2bc638e073b"}}, "privateEndpointConnections": null, + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-14T19:22:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-14T19:22:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-testresource", + "name": "jiyu-testresource", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "da9f840f-a366-4525-ae77-7142a794cf49", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-03-16T23:19:49+00:00", + "endpoint": "https://jiyu-teststore.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-16T23:19:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-29T21:25:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore", + "name": "jiyu-teststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-05T19:32:08+00:00", "endpoint": "https://jiyu-wusstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-wusstore/privateEndpointConnections/jiyupetest_756dffb7-fc14-48e7-a7de-d4c8a36bb01d", + "name": "jiyupetest_756dffb7-fc14-48e7-a7de-d4c8a36bb01d", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyupetest"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Enabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-05T19:32:08+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-04-11T21:44:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-wusstore", + "name": "jiyu-wusstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-11-18T20:34:11+00:00", "endpoint": "https://jlinares-wus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-18T20:34:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-11-18T20:34:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-wus", + "name": "jlinares-wus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-10T07:33:47+00:00", "endpoint": "https://junbchen-rbac-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-10T07:33:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-10T07:33:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchen-rbac-test", + "name": "junbchen-rbac-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-02-10T11:56:31+00:00", "endpoint": "https://junbchenconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-02-10T11:56:31+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-03-20T06:09:56+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig", + "name": "junbchenConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.ManagedIdentity/userAssignedIdentities/junbchen-identity-cmk": + {"principalId": "e790947e-9f1d-4382-af0f-eec738f38956", "clientId": "43310a7e-10ee-4a8d-95d5-512587f292b9"}}, + "principalId": "8ad03e71-e705-4886-b115-6e91de3e349f", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-09-21T07:06:42+00:00", + "endpoint": "https://junbchenconfig-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-test/privateEndpointConnections/junbchen-my-pe", + "name": "junbchen-my-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/junbchen-my-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-21T07:06:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-08T02:57:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-test", + "name": "junbchenconfig-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-23T01:44:20+00:00", "endpoint": "https://notification-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-23T01:44:20+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2021-05-24T20:06:29+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/notification-test", + "name": "notification-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-12-01T23:02:40+00:00", "endpoint": "https://replicatest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-12-01T23:02:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T23:13:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/replicatest", + "name": "replicatest", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:46:09+00:00", "endpoint": "https://sample.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:46:09+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-25T18:46:09+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/sample", + "name": "sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-02-14T05:17:40+00:00", "endpoint": "https://scrum.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-02-14T05:17:40+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-02-14T05:17:40+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/scrum", + "name": "scrum", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-16T23:42:04+00:00", "endpoint": "https://sync-integration-source.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-16T23:42:04+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-16T23:42:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-source", + "name": "sync-integration-source", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-16T23:43:37+00:00", "endpoint": "https://sync-integration-target.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-16T23:43:37+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-16T23:43:37+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-target", + "name": "sync-integration-target", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-03-05T00:57:52+00:00", "endpoint": "https://teststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2021-03-05T00:57:52+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-05-10T06:06:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vendorteamtestrg/providers/Microsoft.AppConfiguration/configurationStores/teststore1", + "name": "TestStore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-10T18:34:03+00:00", "endpoint": "https://tolani-manifest-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-10T18:34:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-10T18:34:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-manifest-test", + "name": "tolani-manifest-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-23T20:30:55+00:00", "endpoint": "https://xuxu-dev-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-23T20:30:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-23T20:30:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-dev-test", + "name": "xuxu-dev-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T23:20:19+00:00", "endpoint": "https://xuxu-softdelete-2025-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T23:20:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-01T05:59:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-softdelete-2025-3", + "name": "xuxu-softdelete-2025-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-22T21:58:58+00:00", "endpoint": "https://xuxutest2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-22T21:58:58+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-09-01T00:01:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxutest2", + "name": "xuxutest2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-01-23T22:43:48+00:00", "endpoint": "https://xuxuteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-01-23T22:43:48+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-01-23T22:43:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuteststore", + "name": "xuxuteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T12:14:02+00:00", "endpoint": "https://202503071050aadstorelbub34eijpr7lode.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:14:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:14:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050aadstorelbub34eijpr7lode", + "name": "202503071050AADStorelbub34eijpr7lode", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:05+00:00", "endpoint": "https://202503071050aadstoretvbz6bjfgcrueuj7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050aadstoretvbz6bjfgcrueuj7", + "name": "202503071050AADStoretvbz6bjfgcrueuj7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050featurefiltertestz3tajzl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050featurefiltertestz3tajzl", + "name": "202503071050FeatureFilterTestz3tajzl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050featuretestbis7h3hf75vhu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050featuretestbis7h3hf75vhu", + "name": "202503071050FeatureTestbis7h3hf75vhu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050kvsetimporttestj7dxbos4t.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvsetimporttestj7dxbos4t", + "name": "202503071050KVSetImportTestj7dxbos4t", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050kvtestex2pahcgf6zf6ichhh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvtestex2pahcgf6zf6ichhh", + "name": "202503071050KVTestex2pahcgf6zf6ichhh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:43+00:00", "endpoint": "https://202503071050kvtestpwhanchjfarusoc6hx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvtestpwhanchjfarusoc6hx", + "name": "202503071050KVTestpwhanchjfarusoc6hx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:05+00:00", "endpoint": "https://202503071050source4jumespglx52uvwv73.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050source4jumespglx52uvwv73", + "name": "202503071050Source4jumespglx52uvwv73", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050strictimporttestiabfkuyi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050strictimporttestiabfkuyi", + "name": "202503071050StrictImportTestiabfkuyi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-18T18:36:58+00:00", "endpoint": "https://aacpreviewcddklrzrcr43y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-18T18:36:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-25T17:47:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev3/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewcddklrzrcr43y", + "name": "aacpreviewcddklrzrcr43y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-17T22:34:27+00:00", "endpoint": "https://aacpreviewglh3yhyjvuqx4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-17T22:34:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-17T23:24:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewglh3yhyjvuqx4", + "name": "aacpreviewglh3yhyjvuqx4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-29T18:27:34+00:00", "endpoint": "https://aacpreviewnbuq7mn7uftpu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T18:27:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-30T19:33:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-ai-chat-test/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewnbuq7mn7uftpu", + "name": "aacpreviewnbuq7mn7uftpu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-17T23:42:05+00:00", "endpoint": "https://aacpreviewog5i35jytnwqe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-17T23:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-17T23:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev2/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewog5i35jytnwqe", + "name": "aacpreviewog5i35jytnwqe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-22T18:12:58+00:00", "endpoint": "https://aacpreviewpem2i2yi7hhce.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-22T18:12:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-22T18:12:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-ross-azd-temp/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewpem2i2yi7hhce", + "name": "aacpreviewpem2i2yi7hhce", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d2fc891a-1990-40bd-87e5-89583d8603f0", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-03-21T04:28:43+00:00", + "endpoint": "https://aactest4156.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-03-21T04:28:43+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-06-25T21:39:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_test2/providers/Microsoft.AppConfiguration/configurationStores/aactest4156", + "name": "AACtest4156", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:48:19+00:00", "endpoint": "https://aadstore2fdc6wfxygy2nnb3gw6ckd2sermi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:48:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:48:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2fdc6wfxygy2nnb3gw6ckd2sermi", + "name": "AADStore2fdc6wfxygy2nnb3gw6ckd2sermi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://aadstore2j23nxok6pn5otve.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2j23nxok6pn5otve", + "name": "AADStore2j23nxok6pn5otve", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:25:20+00:00", "endpoint": "https://aadstore2kisbgqpo525kjduvfqihqnsx4nt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:25:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:25:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2kisbgqpo525kjduvfqihqnsx4nt", + "name": "AADStore2kisbgqpo525kjduvfqihqnsx4nt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:29+00:00", "endpoint": "https://aadstore3dce6d55zqgbwack.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore3dce6d55zqgbwack", + "name": "AADStore3dce6d55zqgbwack", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:28+00:00", "endpoint": "https://aadstore6nr3kgh7g33qxwbb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore6nr3kgh7g33qxwbb", + "name": "AADStore6nr3kgh7g33qxwbb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://aadstoreaantdclm5gpqei2hhdf6cva3sljt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreaantdclm5gpqei2hhdf6cva3sljt", + "name": "AADStoreaantdclm5gpqei2hhdf6cva3sljt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T21:46:30+00:00", "endpoint": "https://aadstorec4ol3cqh5zpjr6h26tze7vmjpw3z.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "b82302a5-ce22-429d-b5af-a8969e61ef42", "createdByType": + "Application", "createdAt": "2025-03-18T21:46:30+00:00", "lastModifiedBy": + "b82302a5-ce22-429d-b5af-a8969e61ef42", "lastModifiedByType": "Application", + "lastModifiedAt": "2025-03-18T21:46:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/aadstorec4ol3cqh5zpjr6h26tze7vmjpw3z", + "name": "AADStorec4ol3cqh5zpjr6h26tze7vmjpw3z", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://aadstored4eq4jf2dxb7w6q2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstored4eq4jf2dxb7w6q2", + "name": "AADStored4eq4jf2dxb7w6q2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:54:21+00:00", "endpoint": "https://aadstoredngl3p3poqiv3afvsecphzi7awkv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:54:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:54:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoredngl3p3poqiv3afvsecphzi7awkv", + "name": "AADStoredngl3p3poqiv3afvsecphzi7awkv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://aadstoreehsptlkv33yb6ypf4u6ro2zjzoma.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreehsptlkv33yb6ypf4u6ro2zjzoma", + "name": "AADStoreehsptlkv33yb6ypf4u6ro2zjzoma", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://aadstoreemoarcatx4ig55bf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreemoarcatx4ig55bf", + "name": "AADStoreemoarcatx4ig55bf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:01:10+00:00", "endpoint": "https://aadstorefa47dzf4yc7jajleqyj3fsy5z2ne.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:01:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:01:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefa47dzf4yc7jajleqyj3fsy5z2ne", + "name": "AADStorefa47dzf4yc7jajleqyj3fsy5z2ne", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:07:12+00:00", "endpoint": "https://aadstorefekzsb2x5ovlq42cl4fjprdjcqck.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:07:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:07:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefekzsb2x5ovlq42cl4fjprdjcqck", + "name": "AADStorefekzsb2x5ovlq42cl4fjprdjcqck", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:48:19+00:00", "endpoint": "https://aadstorefj4psmfliidhcij2l53aht4reart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:48:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:48:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefj4psmfliidhcij2l53aht4reart", + "name": "AADStorefj4psmfliidhcij2l53aht4reart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:00+00:00", "endpoint": "https://aadstorefj5yfl63sm2uy46h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefj5yfl63sm2uy46h", + "name": "AADStorefj5yfl63sm2uy46h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T18:39:35+00:00", "endpoint": "https://aadstorehztciysy7xk4ewqzycdsq4incxbl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T18:39:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T18:39:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorehztciysy7xk4ewqzycdsq4incxbl", + "name": "AADStorehztciysy7xk4ewqzycdsq4incxbl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:30:23+00:00", "endpoint": "https://aadstorej6ldt2p4jl4arinnyk6m56v7yxob.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:30:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:30:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorej6ldt2p4jl4arinnyk6m56v7yxob", + "name": "AADStorej6ldt2p4jl4arinnyk6m56v7yxob", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://aadstorelyj2p6zwhasozckb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorelyj2p6zwhasozckb", + "name": "AADStorelyj2p6zwhasozckb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:09+00:00", "endpoint": "https://aadstoremaufp2otrctetauz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoremaufp2otrctetauz", + "name": "AADStoremaufp2otrctetauz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:53:43+00:00", "endpoint": "https://aadstoremqvpy6y6ngbns2zenvqysrzsl3ul.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:53:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:53:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoremqvpy6y6ngbns2zenvqysrzsl3ul", + "name": "AADStoremqvpy6y6ngbns2zenvqysrzsl3ul", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T21:34:01+00:00", "endpoint": "https://aadstoreoi34pez3z4quweid45aemfftd6q5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "0c2e9572-c9a5-4312-87ca-e25e62ce1775", "createdByType": + "Application", "createdAt": "2025-03-18T21:34:01+00:00", "lastModifiedBy": + "0c2e9572-c9a5-4312-87ca-e25e62ce1775", "lastModifiedByType": "Application", + "lastModifiedAt": "2025-03-18T21:34:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/aadstoreoi34pez3z4quweid45aemfftd6q5", + "name": "AADStoreoi34pez3z4quweid45aemfftd6q5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:21:34+00:00", "endpoint": "https://aadstoreptvgrkgrh5qdndt42qsprw5rm6ly.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:21:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:21:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreptvgrkgrh5qdndt42qsprw5rm6ly", + "name": "AADStoreptvgrkgrh5qdndt42qsprw5rm6ly", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:33:36+00:00", "endpoint": "https://aadstorer6gudmc32peoau6hb3bf5vvyj3q2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:33:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:33:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorer6gudmc32peoau6hb3bf5vvyj3q2", + "name": "AADStorer6gudmc32peoau6hb3bf5vvyj3q2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:29:39+00:00", "endpoint": "https://aadstoresadnweyx5hskkifsx7tfsv4ptwqe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:29:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:29:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoresadnweyx5hskkifsx7tfsv4ptwqe", + "name": "AADStoresadnweyx5hskkifsx7tfsv4ptwqe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T18:46:41+00:00", "endpoint": "https://aadstorestvj77kkmdknc2sv7xibljl7433p.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T18:46:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T18:46:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorestvj77kkmdknc2sv7xibljl7433p", + "name": "AADStorestvj77kkmdknc2sv7xibljl7433p", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://aadstoreu4qbgzyfxdmy6lpd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreu4qbgzyfxdmy6lpd", + "name": "AADStoreu4qbgzyfxdmy6lpd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:16+00:00", "endpoint": "https://aadstoreuje4evizirs5a6342bspybsecsib.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreuje4evizirs5a6342bspybsecsib", + "name": "AADStoreuje4evizirs5a6342bspybsecsib", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:11:12+00:00", "endpoint": "https://aadstorevgd2tlbh6eykb7dx2loyzn4xajr3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:11:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:11:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorevgd2tlbh6eykb7dx2loyzn4xajr3", + "name": "AADStorevgd2tlbh6eykb7dx2loyzn4xajr3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:33:12+00:00", "endpoint": "https://aadstorevqztvqfq25dqbpjndilalipnl6tw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:33:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:33:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorevqztvqfq25dqbpjndilalipnl6tw", + "name": "AADStorevqztvqfq25dqbpjndilalipnl6tw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:51:34+00:00", "endpoint": "https://aadstorexqwgsfnuryxk6a52ashu2z6bst3d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:51:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:51:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorexqwgsfnuryxk6a52ashu2z6bst3d", + "name": "AADStorexqwgsfnuryxk6a52ashu2z6bst3d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://aadstorexxspwhf6yblpkshfi46zb4h76jmw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorexxspwhf6yblpkshfi46zb4h76jmw", + "name": "AADStorexxspwhf6yblpkshfi46zb4h76jmw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://aadstoreyfhynglzfhp6ouko.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreyfhynglzfhp6ouko", + "name": "AADStoreyfhynglzfhp6ouko", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:58:27+00:00", "endpoint": "https://aadstorez47z44qmkfeoffaj7p6jyuljr5du.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:58:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:58:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorez47z44qmkfeoffaj7p6jyuljr5du", + "name": "AADStorez47z44qmkfeoffaj7p6jyuljr5du", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-27T11:12:24+00:00", "endpoint": "https://aadtestbphpp6jw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-27T11:12:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-27T11:12:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaqtmt4okxwxkkeqxxixbg26vnobwquumjo2cgvejdroji56rwqdvwasvnebr3xya4/providers/Microsoft.AppConfiguration/configurationStores/aadtestbphpp6jw", + "name": "AadTestbphpp6jw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:52:15+00:00", "endpoint": "https://aadtestfz2vwxiz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:52:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:52:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf32tkfpn6fob3yu73dinjh76shlmvspc3vvnde72phco2oohx5x5zypldebnx5ra2/providers/Microsoft.AppConfiguration/configurationStores/aadtestfz2vwxiz", + "name": "AadTestfz2vwxiz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:42+00:00", "endpoint": "https://aadtestyu6jk3pc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqos4tjbhhejcb656qv6thmesokhiwxsl2lxiwepvzuphcjifnzbefcz2naw2t3dni/providers/Microsoft.AppConfiguration/configurationStores/aadtestyu6jk3pc", + "name": "AadTestyu6jk3pc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:56:22+00:00", "endpoint": "https://aadtestzyc5ivjm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:56:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:56:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjtmgpqlhvdaxivlgfit35z6eugeihochof5nogetvgk7qmljxwhy6mwuks46fy2ev/providers/Microsoft.AppConfiguration/configurationStores/aadtestzyc5ivjm", + "name": "AadTestzyc5ivjm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-29T16:29:13+00:00", "endpoint": "https://ai-chatapp-demo-mametcal.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T16:29:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-29T17:28:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai-chatapp-demo-mametcal/providers/Microsoft.AppConfiguration/configurationStores/ai-chatapp-demo-mametcal", + "name": "AI-ChatApp-Demo-mametcal", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "dfb4ad91-368f-4de1-8101-c7919fd25c5e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-01-23T23:21:07+00:00", + "endpoint": "https://albertofori-ff-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-23T23:21:07+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-02T17:52:47+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-ff-test", + "name": "albertofori-ff-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-17T23:38:28+00:00", "endpoint": "https://albertofori-import-export-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-06-17T23:38:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-26T17:22:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-import-export-test", + "name": "albertofori-import-export-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-26T13:03:30+00:00", "endpoint": "https://albertofori-python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-26T13:03:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-27T17:06:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-python-provider", + "name": "albertofori-python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-12T21:52:32+00:00", "endpoint": "https://albertofori-snapshot-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-12T21:52:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-21T19:32:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-snapshot-demo", + "name": "albertofori-snapshot-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/albertofori-managed-id": + {"principalId": "6a8e5046-50d3-480d-9ca3-94f61a51f8e3", "clientId": "b82302a5-ce22-429d-b5af-a8969e61ef42"}}, + "principalId": "c27e254a-eed2-4326-a0c8-3082898bac95", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-01T17:00:28+00:00", + "endpoint": "https://albertofori-test-config.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Enabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-04-01T17:00:28+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-10-30T18:14:28+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-config", + "name": "albertofori-test-config", "tags": {"this": "is a new tag"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastus", "identity": + {"type": "SystemAssigned", "principalId": "627b96a5-156b-4334-b427-a97f73c44247", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2022-08-11T17:30:03+00:00", "endpoint": "https://albertofori-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 259200, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T17:30:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-11T21:19:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-store", + "name": "albertofori-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c05dd707-b8e5-4147-84e3-b09e2bf280ed", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-19T03:41:20+00:00", + "endpoint": "https://appconfig-zhiyuanliang.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-02-19T03:41:20+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-30T12:24:20+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyuanliang-dev/providers/Microsoft.AppConfiguration/configurationStores/appconfig-zhiyuanliang", + "name": "appconfig-zhiyuanliang", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-18T22:27:36+00:00", "endpoint": "https://appconfigkube.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-18T22:27:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-18T22:27:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mvp_demo/providers/Microsoft.AppConfiguration/configurationStores/appconfigkube", + "name": "appConfigKube", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-09T08:25:44+00:00", + "endpoint": "https://appconfigurationstore1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", "identityClientId": + "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": null, + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 86400, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-09T08:25:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-25T07:59:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/appconfigurationstore1", + "name": "appconfigurationstore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-10T15:50:07+00:00", "endpoint": "https://appconfigw4swdcadfzqb6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-10T15:50:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T17:04:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/appconfigw4swdcadfzqb6", + "name": "appconfigw4swdcadfzqb6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-10-16T18:36:25+00:00", "endpoint": "https://avgupta-appc-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-16T18:36:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-23T19:57:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus", + "name": "avgupta-appc-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-06T17:34:04+00:00", "endpoint": "https://avgupta-appc-eus-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-06T17:34:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-06T17:34:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus-test2", + "name": "avgupta-appc-eus-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:57:29+00:00", "endpoint": "https://bothschematest2ajsnm4m4m.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:57:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:57:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematest2ajsnm4m4m", + "name": "BothSchemaTest2ajsnm4m4m", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T20:04:20+00:00", "endpoint": "https://bothschematestazrlxgv5apnvcwi5dgvsoj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T20:04:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T20:04:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestazrlxgv5apnvcwi5dgvsoj", + "name": "BothSchemaTestazrlxgv5apnvcwi5dgvsoj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:51+00:00", "endpoint": "https://bothschematestdxcevakc6u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestdxcevakc6u", + "name": "BothSchemaTestdxcevakc6u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:07:29+00:00", "endpoint": "https://bothschematestfxm4zemppk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:07:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:07:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestfxm4zemppk", + "name": "BothSchemaTestfxm4zemppk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-29T00:38:15+00:00", "endpoint": "https://cdntestinghtkswxoxu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2025-05-29T00:38:15+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-29T00:42:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/cdntestinghtkswxoxu", + "name": "cdntestinghtkswxoxu", "tags": {"demo": "cdn-cache-busting"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastus", "properties": + {"provisioningState": "Succeeded", "creationDate": "2024-12-06T08:13:55+00:00", + "endpoint": "https://chenshi-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-12-06T08:13:55+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-12-06T08:13:55+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chenshi-empty/providers/Microsoft.AppConfiguration/configurationStores/chenshi-test", + "name": "chenshi-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-31T04:09:21+00:00", "endpoint": "https://credentialtestghlwa5dymj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-31T04:09:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-31T04:09:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmduhbiqbiiegesiuewzdwlvnh6wrdgdsbti6tgxzjzeittnnlqwu4or5gzhqmjzcp/providers/Microsoft.AppConfiguration/configurationStores/credentialtestghlwa5dymj", + "name": "CredentialTestghlwa5dymj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://credentialtestrvdev7icfu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkhjgepteg6uxberos6x5tz6bbxjgjliagmxzgu2iehb5me5yqmle6shfkr43tgvue/providers/Microsoft.AppConfiguration/configurationStores/credentialtestrvdev7icfu", + "name": "CredentialTestrvdev7icfu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:00+00:00", "endpoint": "https://credentialtestvdwi2cve5c.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/credentialtestvdwi2cve5c", + "name": "CredentialTestvdwi2cve5c", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-08T10:32:41+00:00", "endpoint": "https://cwanjau-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-01-08T10:32:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-20T17:42:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-appconfig", + "name": "cwanjau-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T16:42:42+00:00", "endpoint": "https://cwanjau-data.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T16:42:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T16:42:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-data", + "name": "cwanjau-data", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-24T15:05:46+00:00", "endpoint": "https://cwanjauconfig.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", + "identityClientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-24T15:05:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-06T08:22:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjauconfig", + "name": "cwanjauConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-05T17:31:19+00:00", "endpoint": "https://cwanjautestpremiumsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-05T17:31:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-18T09:00:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjautestpremiumsku", + "name": "cwanjautestpremiumsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:58+00:00", "endpoint": "https://destination624bxoocjr2fi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwyttwmni2xmbsaxrtp64sja6rdh2ocxcprrc5pwdogqijazx7f4vhljo5qfanoryn/providers/Microsoft.AppConfiguration/configurationStores/destination624bxoocjr2fi", + "name": "Destination624bxoocjr2fi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:21+00:00", "endpoint": "https://destinationaoj4n5rlqmypa.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:50:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:50:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationaoj4n5rlqmypa", + "name": "Destinationaoj4n5rlqmypa", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:53:04+00:00", "endpoint": "https://destinationaq6eqb6bwrydgaariika6z53n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:53:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:53:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationaq6eqb6bwrydgaariika6z53n", + "name": "Destinationaq6eqb6bwrydgaariika6z53n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:31+00:00", "endpoint": "https://destinationcplr7jafu2ya5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationcplr7jafu2ya5", + "name": "Destinationcplr7jafu2ya5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:34:19+00:00", "endpoint": "https://destinationibqoopqxlj6k6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:34:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:34:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationibqoopqxlj6k6", + "name": "Destinationibqoopqxlj6k6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:56+00:00", "endpoint": "https://destinationlxi67pwgjj57oguvmzwgkt2vf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationlxi67pwgjj57oguvmzwgkt2vf", + "name": "Destinationlxi67pwgjj57oguvmzwgkt2vf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:22+00:00", "endpoint": "https://destinationnqga6gaurejxxtvybkxnccztp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationnqga6gaurejxxtvybkxnccztp", + "name": "Destinationnqga6gaurejxxtvybkxnccztp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:52:14+00:00", "endpoint": "https://destinationoj2i2wxwar47i.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationoj2i2wxwar47i", + "name": "Destinationoj2i2wxwar47i", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:39:38+00:00", "endpoint": "https://destinationrzqf65ztf6tdr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:39:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:39:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationrzqf65ztf6tdr", + "name": "Destinationrzqf65ztf6tdr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:07:04+00:00", "endpoint": "https://destinationvzuqxfj74tquf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:07:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:07:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguznozpjynfgaebftsnnrdc52h2scgoorpr6unkhktfxrcwsulo6qvsxb6b6j2jkfn/providers/Microsoft.AppConfiguration/configurationStores/destinationvzuqxfj74tquf", + "name": "Destinationvzuqxfj74tquf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:00:21+00:00", "endpoint": "https://destinationwjno7ctvxyjrl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:00:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:00:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationwjno7ctvxyjrl", + "name": "Destinationwjno7ctvxyjrl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:02+00:00", "endpoint": "https://destinationy75zwpupmogkjvsohc7ou4yxv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationy75zwpupmogkjvsohc7ou4yxv", + "name": "Destinationy75zwpupmogkjvsohc7ou4yxv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:37:44+00:00", "endpoint": "https://disablelocalauthfju7nz7v.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:37:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:38:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthfju7nz7v", + "name": "DisableLocalAuthfju7nz7v", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:58:33+00:00", "endpoint": "https://disablelocalauthhs4noupq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:58:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:59:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthhs4noupq", + "name": "DisableLocalAuthhs4noupq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:04+00:00", "endpoint": "https://disablelocalauthqaeotexuyh5meeg5l7xm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthqaeotexuyh5meeg5l7xm", + "name": "DisableLocalAuthqaeotexuyh5meeg5l7xm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:48:35+00:00", "endpoint": "https://disablelocalauthsejaovxn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:48:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:49:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthsejaovxn", + "name": "DisableLocalAuthsejaovxn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:39+00:00", "endpoint": "https://featurefiltertest4oe7rjo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest4oe7rjo", + "name": "FeatureFilterTest4oe7rjo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:41+00:00", "endpoint": "https://featurefiltertest4qffyn3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq3rajrlh5wrogzgbxi7z4mjxxcjgiie4yagnbmwn6wrksy52etjishk2wfygh6qc5/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest4qffyn3", + "name": "FeatureFilterTest4qffyn3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:49+00:00", "endpoint": "https://featurefiltertest5a5yxm3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest5a5yxm3", + "name": "FeatureFilterTest5a5yxm3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:06+00:00", "endpoint": "https://featurefiltertestak76alz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestak76alz", + "name": "FeatureFilterTestak76alz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:59+00:00", "endpoint": "https://featurefiltertestczvejyt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestczvejyt", + "name": "FeatureFilterTestczvejyt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:31+00:00", "endpoint": "https://featurefiltertestntvamlv3qsxhrqghqxt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestntvamlv3qsxhrqghqxt", + "name": "FeatureFilterTestntvamlv3qsxhrqghqxt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:08:03+00:00", "endpoint": "https://haiyiwen-weu-0716.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:08:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:08:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716", + "name": "haiyiwen-weu-0716", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:23:12+00:00", "endpoint": "https://haiyiwen-weu-0716-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:23:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:23:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-1", + "name": "haiyiwen-weu-0716-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:24:06+00:00", "endpoint": "https://haiyiwen-weu-0716-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:24:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:24:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-2", + "name": "haiyiwen-weu-0716-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:29:54+00:00", "endpoint": "https://haiyiwen-weu-0716-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:29:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:29:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-3", + "name": "haiyiwen-weu-0716-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:30:11+00:00", "endpoint": "https://haiyiwen-weu-0716-4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:30:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:30:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-4", + "name": "haiyiwen-weu-0716-4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:30:27+00:00", "endpoint": "https://haiyiwen-weu-0716-5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:30:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:30:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-5", + "name": "haiyiwen-weu-0716-5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:39:47+00:00", "endpoint": "https://haiyiwen-weu-0716-6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:39:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:39:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-6", + "name": "haiyiwen-weu-0716-6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-11T17:46:54+00:00", "endpoint": "https://jlinares-weu-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-11T17:46:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-11T17:46:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-weu-test", + "name": "jlinares-weu-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-11-20T20:44:09+00:00", "endpoint": "https://parameters.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-20T20:44:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-09T21:27:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/parameters", + "name": "parameters", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southeastasia", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-23T08:11:48+00:00", "endpoint": "https://appconfig-dova-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-23T08:11:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-23T08:11:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfig-dova/providers/Microsoft.AppConfiguration/configurationStores/appconfig-dova-store", + "name": "appconfig-dova-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-10-08T16:40:07+00:00", "endpoint": "https://australia-east-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-08T16:40:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-08T16:40:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/australia-east-test", + "name": "australia-east-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-10-21T20:31:31+00:00", "endpoint": "https://tolani-aue-aad-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-21T20:31:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-21T21:13:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-aue-aad-test", + "name": "tolani-aue-aad-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-05T20:33:25+00:00", "endpoint": "https://tolani-aue-test-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T20:33:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-05T20:33:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-aue-test-2", + "name": "tolani-aue-test-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "identity": {"type": "SystemAssigned", "principalId": + "5b4d94b7-a951-4698-805a-cfc91ee54f15", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-08-06T12:26:08+00:00", + "endpoint": "https://freestoreee.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-08-06T12:26:08+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-08-07T07:30:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestoreee", + "name": "freeStoreee", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-test": + {"principalId": "1a010275-1a70-4915-a017-b778836ea3b7", "clientId": "b60a60f9-e266-447b-a168-15af052f49a1"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-01-16T19:22:44+00:00", + "endpoint": "https://jiyu-neu.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-16T19:22:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-08T00:09:31+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-neu", + "name": "jiyu-neu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-18T16:15:26+00:00", "endpoint": "https://testupgradefree.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T16:15:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-20T17:38:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testupgradefree", + "name": "testupgradefree", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uksouth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-15T08:59:14+00:00", "endpoint": "https://cwanjau-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-15T08:59:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T07:24:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-pe", + "name": "cwanjau-PE", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uksouth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-22T22:32:16+00:00", "endpoint": "https://tolani-prod-uks-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-22T22:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-22T22:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-uks-1", + "name": "tolani-prod-uks-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/albertofori-managed-id": + {"principalId": "6a8e5046-50d3-480d-9ca3-94f61a51f8e3", "clientId": "b82302a5-ce22-429d-b5af-a8969e61ef42"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-01T22:41:59+00:00", + "endpoint": "https://albertofori-diff-import-export.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-01T22:41:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-11T21:32:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-diff-import-export", + "name": "albertofori-diff-import-export", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-20T20:26:27+00:00", "endpoint": "https://albertoforiteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-06-20T20:26:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-09T01:23:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforiteststore", + "name": "albertoforiteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T22:55:24+00:00", "endpoint": "https://avgupta-appc-eus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T22:55:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-07T23:58:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus2", + "name": "avgupta-appc-eus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-21T16:22:23+00:00", "endpoint": "https://haiyiwen-aiconfig-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-21T16:22:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-04T04:24:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-aiconfig-demo", + "name": "haiyiwen-aiconfig-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-06-05T18:10:41+00:00", + "endpoint": "https://haiyiwen-eus2-0605.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-05T18:10:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T20:57:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2-0605", + "name": "haiyiwen-eus2-0605", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-05T18:25:54+00:00", "endpoint": "https://haiyiwen-eus2-0605-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-05T18:25:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-05T18:25:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2-0605-1", + "name": "haiyiwen-eus2-0605-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-06T22:13:49+00:00", "endpoint": "https://jiyu-eus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-06T22:13:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-06T22:19:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus2", + "name": "jiyu-eus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-06T18:34:38+00:00", "endpoint": "https://portal-test-eu2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-06T18:34:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T17:29:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-eu2", + "name": "portal-test-eu2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-17T20:42:26+00:00", "endpoint": "https://portal-test-eu2-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-17T20:42:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-18T00:52:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-eu2-2", + "name": "portal-test-eu2-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-09T08:19:20+00:00", "endpoint": "https://test-experimentation.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-09T08:19:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-09T08:24:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/test-experimentation", + "name": "test-experimentation", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-15T17:26:16+00:00", "endpoint": "https://appconfig-mfpyttqk5gws.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-15T17:26:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-15T17:26:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfig-mfpyttqk5gws", + "name": "appconfig-mfpyttqk5gws", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "c45e9ed2-6e72-460a-82f9-6306b65fa956", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-03-02T02:42:51+00:00", + "endpoint": "https://appconfigtwo.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-03-02T02:42:51+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-03-03T20:14:50+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/appconfigtwo", + "name": "AppConfigTwo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T17:01:30+00:00", "endpoint": "https://appconfigwmsp7gt2w2iak.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-10-23T17:01:30+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-10-23T17:01:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/appconfigwmsp7gt2w2iak", + "name": "appconfigwmsp7gt2w2iak", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-10T02:44:51+00:00", "endpoint": "https://asdfasdfad.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-10T02:44:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-10T02:44:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/asdfasdfad", + "name": "asdfasdfad", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-25T17:28:57+00:00", "endpoint": "https://avgupta-appc-wus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-25T17:28:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-13T17:23:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus2", + "name": "avgupta-appc-wus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "4090f296-4b68-49d2-9250-9bcff07d821b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-11-22T19:29:17+00:00", + "endpoint": "https://avgupta-pe-appc.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-22T19:29:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T00:41:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc", + "name": "avgupta-pe-appc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T09:10:56+00:00", "endpoint": "https://configmapimporttest2uedl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T09:10:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T09:10:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest2uedl", + "name": "ConfigMapImportTest2uedl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T09:04:11+00:00", "endpoint": "https://configmapimporttest3nenl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T09:04:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T09:04:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest3nenl", + "name": "ConfigMapImportTest3nenl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-15T03:11:28+00:00", "endpoint": "https://configmapimporttest5eotn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-15T03:11:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-15T03:11:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest5eotn", + "name": "ConfigMapImportTest000002", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T08:22:05+00:00", "endpoint": "https://configmapimporttest7ugov.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T08:22:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T08:22:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest7ugov", + "name": "ConfigMapImportTest7ugov", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T14:47:55+00:00", "endpoint": "https://configmapimporttesteqacu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T14:47:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T14:47:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttesteqacu", + "name": "ConfigMapImportTesteqacu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T14:46:09+00:00", "endpoint": "https://configmapimporttestezsgo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T14:46:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T14:46:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestezsgo", + "name": "ConfigMapImportTestezsgo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-15T02:42:27+00:00", "endpoint": "https://configmapimporttestghpw2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-15T02:42:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-15T02:42:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestghpw2", + "name": "ConfigMapImportTestghpw2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T15:36:34+00:00", "endpoint": "https://configmapimporttestifrht.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T15:36:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T15:36:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestifrht", + "name": "ConfigMapImportTestifrht", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T07:13:43+00:00", "endpoint": "https://configmapimporttestiy6dj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T07:13:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T07:13:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestiy6dj", + "name": "ConfigMapImportTestiy6dj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T15:05:24+00:00", "endpoint": "https://configmapimporttestjiwd3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T15:05:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T15:05:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestjiwd3", + "name": "ConfigMapImportTestjiwd3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T09:45:34+00:00", "endpoint": "https://configmapimporttestjxp4j.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T09:45:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T09:45:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestjxp4j", + "name": "ConfigMapImportTestjxp4j", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T08:06:28+00:00", "endpoint": "https://configmapimporttests45es.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T08:06:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T08:06:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttests45es", + "name": "ConfigMapImportTests45es", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T07:38:51+00:00", "endpoint": "https://configmapimporttestubqzy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T07:38:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T07:38:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestubqzy", + "name": "ConfigMapImportTestubqzy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-30T00:09:38+00:00", "endpoint": "https://demombappconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-06-30T00:09:38+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-07-18T22:42:16+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/demombappconfig", + "name": "DemoMBAppConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-27T19:10:15+00:00", "endpoint": "https://fake-endpoint.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-27T19:10:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-27T19:11:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/fake-endpoint", + "name": "fake-endpoint", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-13T17:36:36+00:00", "endpoint": "https://highnumberffstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-13T17:36:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-13T17:36:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/highnumberffstore", + "name": "HighNumberFFStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-13T15:59:39+00:00", "endpoint": "https://importtestspring.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-13T15:59:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-13T15:59:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/importtestspring", + "name": "importtestspring", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-21T23:27:57+00:00", "endpoint": "https://java-export-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-21T23:27:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-21T23:27:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/java-export-test", + "name": "java-export-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-07-01T18:03:45+00:00", "endpoint": "https://jlinares-test-slw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-01T18:03:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-07-01T18:03:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-slw", + "name": "jlinares-test-slw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-04-07T23:28:48+00:00", "endpoint": "https://jlinares-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-07T23:28:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-07T23:28:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-store", + "name": "jlinares-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-25T17:10:07+00:00", "endpoint": "https://largekeyvaultstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-25T17:10:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-25T17:10:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/largekeyvaultstore", + "name": "LargeKeyVaultStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-22T18:40:42+00:00", "endpoint": "https://mb-test-template.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-22T18:40:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-22T18:40:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/mb-test-template", + "name": "mb-test-template", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-03-19T19:54:12+00:00", "endpoint": "https://nofeatureflagstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2020-03-19T19:54:12+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-03-19T19:54:12+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/nofeatureflagstore", + "name": "NoFeatureFlagStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-22T19:32:34+00:00", "endpoint": "https://noreplicatest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-22T19:32:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-22T19:32:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/noreplicatest", + "name": "noReplicaTest", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-26T22:52:06+00:00", "endpoint": "https://python-ai-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-26T22:52:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-26T22:52:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-azureaidemomametcal/providers/Microsoft.AppConfiguration/configurationStores/python-ai-test", + "name": "python-ai-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-22T17:53:31+00:00", "endpoint": "https://python-chatapp-example.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-22T17:53:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-25T23:18:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-chatapp-example", + "name": "Python-ChatApp-Example", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-13T18:28:47+00:00", "endpoint": "https://python-multi-source-ff.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-13T18:28:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-27T18:33:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-multi-source-ff", + "name": "python-multi-source-ff", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-01T16:51:09+00:00", "endpoint": "https://python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-01T16:51:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-25T17:52:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider", + "name": "python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-09T17:53:50+00:00", "endpoint": "https://python-provider-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-09T17:53:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-09T17:53:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider-demo", + "name": "python-provider-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-26T18:00:59+00:00", "endpoint": "https://python-provider-flask-sample.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-26T18:00:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-18T22:38:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider-flask-sample", + "name": "python-provider-flask-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-27T19:37:52+00:00", "endpoint": "https://python-provider-tests.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-27T19:37:52+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T21:30:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/python-provider-tests", + "name": "python-provider-tests", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-06-12T15:05:18+00:00", "endpoint": "https://recoverstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-06-12T15:05:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-12T15:05:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/recoverstore", + "name": "recoverStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-06T18:58:43+00:00", "endpoint": "https://screenshotdocstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-06T18:58:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-16T23:29:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/screenshotdocstore", + "name": "screenshotdocstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-12-07T18:13:20+00:00", "endpoint": "https://spring-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-12-07T18:13:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-12-07T18:13:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-demo", + "name": "Spring-Demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-01T17:01:47+00:00", "endpoint": "https://spring-df-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-01T17:01:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-09-01T17:01:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-df-demo", + "name": "spring-df-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-30T19:16:42+00:00", "endpoint": "https://spring-quickstart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-30T19:16:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-30T19:16:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-quickstart", + "name": "spring-quickstart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-01-17T10:27:02+00:00", "endpoint": "https://spring-sync-token.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-01-17T10:27:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-01-17T10:27:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-sync-token", + "name": "spring-sync-token", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-19T17:09:21+00:00", "endpoint": "https://springdocchecks.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-19T17:09:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-19T17:09:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/springdocchecks", + "name": "SpringDocChecks", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-20T05:54:32+00:00", "endpoint": "https://t-vvidyasaga-ac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-20T05:54:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-20T05:54:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac", + "name": "t-vvidyasaga-ac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-23T16:43:34+00:00", "endpoint": "https://t-vvidyasaga-ac-learn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-23T16:43:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-23T16:43:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac-learn", + "name": "t-vvidyasaga-ac-learn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-27T17:42:41+00:00", "endpoint": "https://t-vvidyasaga-ac2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-27T17:42:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-27T17:42:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac2", + "name": "t-vvidyasaga-ac2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-12T16:26:03+00:00", "endpoint": "https://telemetryhashvalidation.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-12T16:26:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-13T23:01:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/telemetryhashvalidation", + "name": "TelemetryHashValidation", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-03-15T20:28:18+00:00", "endpoint": "https://testh.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-03-15T20:28:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-03-15T20:28:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/testh", + "name": "testh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-16T02:10:36+00:00", "endpoint": "https://tolani.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-16T02:10:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-16T02:17:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani", + "name": "tolani", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-29T21:40:07+00:00", "endpoint": "https://tolani-api-version-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-29T21:40:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-29T21:40:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-api-version-test", + "name": "tolani-api-version-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T17:56:34+00:00", "endpoint": "https://tolani-cnry-dev-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T17:56:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T17:56:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-cnry-dev-test", + "name": "tolani-cnry-dev-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "2196a2a0-d665-409c-a05a-470b2b6409bf", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-06-19T20:20:22+00:00", + "endpoint": "https://tolani-demo.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-06-19T20:20:22+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-06-23T20:58:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-demo", + "name": "tolani-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T03:59:14+00:00", "endpoint": "https://tolani-prod-aad-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T03:59:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-19T21:22:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-aad-test", + "name": "tolani-prod-aad-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-01T16:38:22+00:00", "endpoint": "https://tolani-snap-ref-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-01T16:38:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-09T21:20:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-snap-ref-demo", + "name": "tolani-snap-ref-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-15T00:05:33+00:00", "endpoint": "https://tolani-snapshot-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-15T00:05:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-15T00:13:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-snapshot-test", + "name": "tolani-snapshot-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-19T18:22:29+00:00", "endpoint": "https://tolani-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-19T18:22:29+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-07-22T22:41:23+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-store", + "name": "tolani-store", "tags": {"myTestTag": "[12,14,15]", "myTestTag2": + "{\"key\":\"value\"}", "myTestTag3": "askldfjlksdjfksdf\\"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-24T22:15:44+00:00", "endpoint": "https://tolani-test-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-24T22:15:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-24T22:15:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-test-1", + "name": "tolani-test-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "brazilsouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-11T15:37:27+00:00", "endpoint": "https://brzls.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-11T15:37:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-11T15:37:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/brzls", + "name": "Brzls", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T17:29:23+00:00", "endpoint": "https://albertofori-notification-canadacentral.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-10T17:29:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T18:10:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-canadacentral", + "name": "albertofori-notification-canadacentral", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-05-29T20:34:57+00:00", "endpoint": "https://avgupta-appc-cac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-29T20:34:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-29T20:35:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-cac", + "name": "avgupta-appc-cac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.ManagedIdentity/userAssignedIdentities/junbchen-identity-cmk": + {"principalId": "e790947e-9f1d-4382-af0f-eec738f38956", "clientId": "43310a7e-10ee-4a8d-95d5-512587f292b9"}}, + "principalId": "c315f504-623d-47f4-8c17-5990a848717b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-07T14:26:45+00:00", + "endpoint": "https://junbchenconfig-demo-ca.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://junbchenkeyvault.vault.azure.net/keys/key1/6998a4384b444f4bad0bf27a556ad115", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-07T14:26:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T06:18:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-demo-ca", + "name": "junbchenconfig-demo-ca", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastasia", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T06:45:35+00:00", "endpoint": "https://appc-6oexkucpmwqte.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T06:45:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T09:57:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-rg-azd-test/providers/Microsoft.AppConfiguration/configurationStores/appc-6oexkucpmwqte", + "name": "appc-6oexkucpmwqte", "tags": {"azd-env-name": "test"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastasia", + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-07-31T02:07:56+00:00", + "endpoint": "https://linglingye-appconfig-test.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-31T02:07:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-15T08:21:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linglingye-rg/providers/Microsoft.AppConfiguration/configurationStores/linglingye-appconfig-test", + "name": "linglingye-appconfig-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastasia", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-03-05T00:58:22+00:00", "endpoint": "https://teststore2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2021-03-05T00:58:22+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-05-10T06:06:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vendorteamtestrg/providers/Microsoft.AppConfiguration/configurationStores/teststore2", + "name": "TestStore2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-07T12:21:12+00:00", "endpoint": "https://202503071050snapshotfilters5in556ck5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:21:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:21:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050snapshotfilters5in556ck5", + "name": "202503071050SnapshotFilters5in556ck5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-07T12:21:12+00:00", "endpoint": "https://202503071050snapshotstoreonrneh6qvta.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:21:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:21:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050snapshotstoreonrneh6qvta", + "name": "202503071050SnapshotStoreonrneh6qvta", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T18:33:42+00:00", "endpoint": "https://albertofori-notification-frc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-11-10T18:33:42+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-09-11T09:16:13+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-frc", + "name": "albertofori-notification-frc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, + "principalId": "03682d8e-25ea-4541-a59b-9ebbbc02a84f", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-05-17T16:27:19+00:00", + "endpoint": "https://haiyiwen-francecentral-0517.azconfig.io", "encryption": + {"keyVaultProperties": {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt-2", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-17T16:27:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-12T17:24:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-francecentral-0517", + "name": "haiyiwen-francecentral-0517", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:51:58+00:00", "endpoint": "https://snapshotstore3tzfoxsj2hh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:51:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:51:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstore3tzfoxsj2hh", + "name": "SnapshotStore3tzfoxsj2hh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:53:28+00:00", "endpoint": "https://snapshotstore6nglgwfngm4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:53:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:53:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstore6nglgwfngm4", + "name": "SnapshotStore6nglgwfngm4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-19T19:57:22+00:00", "endpoint": "https://snapshotstorecw2f475e3rbcjdgongmzj3n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:57:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:57:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorecw2f475e3rbcjdgongmzj3n", + "name": "SnapshotStorecw2f475e3rbcjdgongmzj3n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T04:41:14+00:00", "endpoint": "https://snapshotstoredtargmcnsz3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:41:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:41:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoredtargmcnsz3", + "name": "SnapshotStoredtargmcnsz3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:02:07+00:00", "endpoint": "https://snapshotstorekz4vgltrfnd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:02:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:02:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorekz4vgltrfnd", + "name": "SnapshotStorekz4vgltrfnd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T04:42:38+00:00", "endpoint": "https://snapshotstoren7gxfapmtjw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:42:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:42:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoren7gxfapmtjw", + "name": "SnapshotStoren7gxfapmtjw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-19T19:56:01+00:00", "endpoint": "https://snapshotstoreopjrr76ymkn6nu453hufygh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:56:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:56:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoreopjrr76ymkn6nu453hufygh", + "name": "SnapshotStoreopjrr76ymkn6nu453hufygh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-01-29T23:28:22+00:00", "endpoint": "https://snapshotstoretpfayszap3s.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbwbtajdklwfk67dv4364xpuqyofxkkayxfyccf3lna6dulmb54f3trwrfxt7kqumw/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoretpfayszap3s", + "name": "SnapshotStoretpfayszap3s", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:03:21+00:00", "endpoint": "https://snapshotstorexkvbufgx7cu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:03:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:03:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorexkvbufgx7cu", + "name": "SnapshotStorexkvbufgx7cu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-06T10:09:10+00:00", "endpoint": "https://freestore45.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-06T10:09:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T10:15:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestore45", + "name": "freestore45", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-07T07:55:12+00:00", "endpoint": "https://freeteststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-07T07:55:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:15:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freeteststore1", + "name": "freeteststore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-22T09:57:08+00:00", "endpoint": "https://testfree.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-22T09:57:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-22T09:58:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testfree", + "name": "testfree", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-02T07:53:38+00:00", "endpoint": "https://testfree-cwanjau.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-02T07:53:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:50:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testfree-cwanjau", + "name": "testfree-cwanjau", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "germanywestcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-06T09:56:07+00:00", "endpoint": "https://freestoreeee.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-06T09:56:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T10:05:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestoreeee", + "name": "freeStoreeee", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uaenorth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-31T20:44:08+00:00", "endpoint": "https://xuxu-premium-test-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2024-05-31T20:44:08+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-05-31T20:44:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-premium-test-1", + "name": "xuxu-premium-test-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "norwayeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-05-12T20:17:59+00:00", "endpoint": "https://jlinares-noe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-12T20:17:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-17T09:11:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-noe", + "name": "jlinares-noe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southafricanorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-05-17T21:28:52+00:00", "endpoint": "https://jlinares-test-zan.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-05-17T21:28:52+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-05-17T21:28:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-zan", + "name": "jlinares-test-zan", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "ukwest", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-25T18:39:43+00:00", "endpoint": "https://albertoforiteststore3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-25T18:39:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-25T18:39:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforiteststore3", + "name": "albertoforitestStore3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T18:05:55+00:00", "endpoint": "https://avgupta-appc-wus3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-23T18:05:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-10T23:11:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus3", + "name": "avgupta-appc-wus3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-31T16:36:31+00:00", "endpoint": "https://jimmy-arm-kv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-31T16:36:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-31T16:38:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmy-arm-kv", + "name": "jimmy-arm-kv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-15T20:48:29+00:00", "endpoint": "https://jimmyca-local-auth-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-15T20:48:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-15T20:48:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-local-auth-test", + "name": "jimmyca-local-auth-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-17T18:47:49+00:00", "endpoint": "https://jimmyca-temp-repro.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-17T18:47:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-17T18:47:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-temp-repro", + "name": "jimmyca-temp-repro", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-13T20:07:21+00:00", "endpoint": "https://jlinares-kj-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-13T20:07:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-13T20:08:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-kj-test", + "name": "jlinares-kj-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "brazilsoutheast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-02-10T07:12:05+00:00", "endpoint": "https://jlinares-brse.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-10T07:12:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-02-10T07:12:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-brse", + "name": "jlinares-brse", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-10-19T16:35:22+00:00", "endpoint": "https://abcappc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-10-19T16:35:22+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-30T22:58:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/abcappc", + "name": "abcAppC", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-24T17:22:12+00:00", "endpoint": "https://abcdevtest123.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-04-24T17:22:12+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-17T21:40:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_test1/providers/Microsoft.AppConfiguration/configurationStores/abcdevtest123", + "name": "abcdevTest123", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-19T19:00:55+00:00", "endpoint": "https://bugbash-test-exp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-19T19:00:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-19T19:00:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/minhaz-test/providers/Microsoft.AppConfiguration/configurationStores/bugbash-test-exp", + "name": "bugbash-test-exp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-22T02:28:03+00:00", "endpoint": "https://haiyiwen-dev-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-22T02:28:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-22T02:28:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-dev-swc", + "name": "haiyiwen-dev-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:40:56+00:00", "endpoint": "https://haiyiwen-swc-0716-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:40:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:40:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-swc-0716-1", + "name": "haiyiwen-swc-0716-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-13T00:19:15+00:00", "endpoint": "https://jiyu-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-13T00:19:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-13T00:21:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-swc", + "name": "jiyu-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-02-13T22:31:11+00:00", "endpoint": "https://jlinares-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-13T22:31:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-02-17T17:57:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-swc", + "name": "jlinares-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-12T09:12:08+00:00", "endpoint": "https://mgich-swc.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": "d272d921-c6fa-4394-889a-acb85a9de520"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-12T09:12:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-12T09:12:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-swc", + "name": "mgich-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-17T20:31:20+00:00", "endpoint": "https://portal-test-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-17T20:31:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T20:38:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-swc", + "name": "portal-test-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-01-22T22:31:08+00:00", "endpoint": "https://tolani-prod-swc-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-22T22:31:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-22T22:31:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-swc-1", + "name": "tolani-prod-swc-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "switzerlandwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-07-01T18:05:05+00:00", "endpoint": "https://jlinares-slw1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-01T18:05:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-07-01T18:05:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-slw1", + "name": "jlinares-slw1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "qatarcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-08-05T22:33:14+00:00", "endpoint": "https://jlinares-test-qac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-05T22:33:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-05T22:33:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-qac", + "name": "jlinares-test-qac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southindia", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-08-14T04:10:16+00:00", "endpoint": "https://jlinares-sin-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-14T04:10:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-14T04:10:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-sin-test", + "name": "jlinares-sin-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "polandcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-11T17:58:49+00:00", "endpoint": "https://jlinares-plc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-11T17:58:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-11T17:59:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-plc", + "name": "jlinares-plc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:16:04+00:00", "endpoint": "https://jlinares-cae.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:16:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-cae", + "name": "jlinares-cae", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "norwaywest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:17:12+00:00", "endpoint": "https://jlinares-now.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:17:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:17:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-now", + "name": "jlinares-now", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:19:10+00:00", "endpoint": "https://jlinares-auc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:19:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-31T21:47:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-auc", + "name": "jlinares-auc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiacentral2", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:20:00+00:00", "endpoint": "https://jlinares-auc2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:20:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-22T23:30:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-auc2", + "name": "jlinares-auc2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francesouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:24:27+00:00", "endpoint": "https://jlinares-frs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:24:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:24:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-frs", + "name": "jlinares-frs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "israelcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-08T22:28:48+00:00", "endpoint": "https://jlinares-ilc-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-08T22:28:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-29T21:06:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-ilc-test", + "name": "jlinares-ilc-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southafricawest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-19T21:22:00+00:00", "endpoint": "https://jlinares-zaw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-19T21:22:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-19T21:22:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-zaw", + "name": "jlinares-zaw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "mexicocentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-01T22:05:42+00:00", "endpoint": "https://jlinares-mxc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-01T22:05:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-01T22:07:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-mxc", + "name": "jlinares-mxc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "spaincentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T17:59:45+00:00", "endpoint": "https://albertofori-notification-spaincentral.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T17:59:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-29T18:02:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-spaincentral", + "name": "albertofori-notification-spaincentral", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "spaincentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-29T21:04:44+00:00", "endpoint": "https://jlinares-esc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-29T21:04:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-29T21:07:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-esc", + "name": "jlinares-esc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "newzealandnorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-09-25T16:56:29+00:00", "endpoint": "https://jlinares-nzn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-25T16:56:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-25T16:56:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-nzn", + "name": "jlinares-nzn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uaecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-07-22T20:33:25+00:00", "endpoint": "https://jlinares-uaec.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-22T20:33:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-22T20:33:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-uaec", + "name": "jlinares-uaec", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "jioindiacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-07-22T20:20:55+00:00", "endpoint": "https://jlinares-jinc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-22T20:20:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-22T20:20:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-jinc", + "name": "jlinares-jinc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-06T02:14:44+00:00", "endpoint": "https://app-central-us-euap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 1728000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-03-06T02:14:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-05T19:04:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/app-central-us-euap", + "name": "app-central-us-euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-10T20:11:10+00:00", "endpoint": "https://avgupta-pe-appc-cuseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc-cuseuap/privateEndpointConnections/dupe-connection-name", + "name": "dupe-connection-name", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-cuseuap/providers/Microsoft.Network/privateEndpoints/tolani-pe-1"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-10T20:11:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-10T16:59:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc-cuseuap", + "name": "avgupta-pe-appc-cuseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2021-12-14T21:54:18+00:00", "endpoint": "https://jimmyca-cuseuap-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cuseuap-3/privateEndpointConnections/jimmyca-pe", + "name": "jimmyca-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.Network/privateEndpoints/jimmyca-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-12-14T21:54:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T05:44:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cuseuap-3", + "name": "jimmyca-cuseuap-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, + "principalId": "83480881-97ec-43f7-8dfc-8200cb4ac000", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-10-16T16:09:26+00:00", + "endpoint": "https://jiyu-cuseuap-store-1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, "privateEndpointConnections": null, + "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-10-16T16:09:26+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:56+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-cuseuap-store-1", + "name": "jiyu-cuseuap-store-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-07T07:59:52+00:00", "endpoint": "https://jiyu-cuseuap-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-07T07:59:52+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:33+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-1/providers/Microsoft.AppConfiguration/configurationStores/jiyu-cuseuap-test2", + "name": "jiyu-cuseuap-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-02-02T18:32:20+00:00", "endpoint": "https://jlinares-cuseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-02T18:32:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-02T18:32:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-cuseuap", + "name": "jlinares-cuseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-07T18:16:04+00:00", "endpoint": "https://kjeong-portal-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-07T18:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-05T14:26:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/kjeong-portal-test", + "name": "kjeong-portal-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-15T00:46:21+00:00", "endpoint": "https://nspinttestpoer5zfwwjmp2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-15T00:46:21+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:13+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/nspinttestpoer5zfwwjmp2", + "name": "nspinttestpoer5zfwwjmp2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "identity": {"type": "SystemAssigned", "principalId": + "6f851a0b-ea65-444a-bf7e-209c41feaabc", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-03-01T03:21:20+00:00", + "endpoint": "https://portal-test3.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-01T03:21:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-03T20:52:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test3", + "name": "portal-test3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-05-01T22:40:28+00:00", "endpoint": "https://albertofori-canary-statistics-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-01T22:40:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-07T23:54:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-canary-statistics-test", + "name": "albertofori-canary-statistics-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-28T21:46:59+00:00", "endpoint": "https://albertofori-notification-euap-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-28T21:46:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-28T21:46:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-euap-test", + "name": "albertofori-notification-euap-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-09T23:19:34+00:00", "endpoint": "https://albertofori-notification-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-09T23:19:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-09T23:21:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-test", + "name": "albertofori-notification-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-25T17:21:39+00:00", "endpoint": "https://avgupta-appc-eus2euap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-25T17:21:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-03T01:44:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus2euap", + "name": "avgupta-appc-eus2euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "identity": {"type": "SystemAssigned", "principalId": + "76d7f893-7d86-4e17-8095-3428a0f517dd", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-04T21:19:03+00:00", + "endpoint": "https://cdnconfigs.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-04T21:19:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-15T22:47:29+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/cdnconfigs", + "name": "cdnconfigs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-11T14:25:58+00:00", "endpoint": "https://haiyiwen-eus2euap-0311.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-03-11T14:25:58+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-28T19:22:20+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2euap-0311", + "name": "haiyiwen-eus2euap-0311", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-05-19T18:00:03+00:00", "endpoint": "https://haiyiwen-euseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-05-19T18:00:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-05-15T23:43:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-euseuap", + "name": "haiyiwen-euseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-10-20T16:09:11+00:00", "endpoint": "https://haiyiwen-euseuap-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-20T16:09:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-10-20T16:09:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-euseuap-2", + "name": "haiyiwen-euseuap-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jimmyca-wus/providers/microsoft.managedidentity/userassignedidentities/jimmyca-mi-4": + {"principalId": "949c3968-a2e3-4bdc-b9fe-920f4d5a183f", "clientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, + "principalId": "8462ba54-c3ac-4a7e-ae69-f49bb0525330", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2020-02-14T00:05:52+00:00", + "endpoint": "https://jimmyca-eus2euap.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": null, + "createdByType": null, "createdAt": "2020-02-14T00:05:52+00:00", "lastModifiedBy": + null, "lastModifiedByType": null, "lastModifiedAt": "2021-08-05T15:50:34+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-eus2euap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-eus2euap", + "name": "jimmyca-eus2euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-07T20:43:21+00:00", "endpoint": "https://jiyu-canary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe8", + "name": "jiyu-pe8", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe8"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe-13", + "name": "jiyu-pe-13", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-13"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe-14", + "name": "jiyu-pe-14", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-14"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-07T20:43:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T23:14:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary", + "name": "jiyu-canary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-11-21T00:29:25+00:00", "endpoint": "https://storeincanary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-11-21T00:29:25+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-11-21T00:29:25+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/storeincanary", + "name": "StoreInCanary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-29T17:42:37+00:00", "endpoint": "https://testplugincanary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T17:42:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-29T17:42:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testplugincanary", + "name": "testplugincanary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedensouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-01T00:16:04+00:00", "endpoint": "https://appconfig-dotnetprovider-integrationtest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-01T00:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-24T22:30:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dotnetprovider-integrationtest/providers/Microsoft.AppConfiguration/configurationStores/appconfig-dotnetprovider-integrationtest", + "name": "appconfig-dotnetprovider-integrationtest", "tags": {}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "swedensouth", + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-09-19T21:45:59+00:00", + "endpoint": "https://jlinares-sws-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-09-19T21:45:59+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-09-19T21:46:00+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-sws-test", + "name": "jlinares-sws-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T17:22:44+00:00", "endpoint": "https://albertofori-notification-test-twn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T17:22:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-08T20:41:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-test-twn", + "name": "albertofori-notification-test-twn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-26T23:42:16+00:00", "endpoint": "https://jlinares-twn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-26T23:42:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-26T23:44:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-twn", + "name": "jlinares-twn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorthwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T20:26:19+00:00", "endpoint": "https://jlinares-twnw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T20:26:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-29T20:32:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-twnw", + "name": "jlinares-twnw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "israelnorthwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-12T01:32:16+00:00", "endpoint": "https://albertofori-notification-ilnw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-12T01:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-12T01:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-ilnw", + "name": "albertofori-notification-ilnw", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZtbT%2bNGFID%2fi1X1CRMIS6MiraopeNsUSKidKF2Ul4kzCU58Y8ZOsiD%2be885doZJoFJfzxuwyq6%2bPdeZ%2bXj1crWr7pJ8bbyrV28SRKPrYDAKxd048q68p6oqzVWnk8lcLlWm8upUvtRancZF1jH1zMQ6KaukyE2n15tfytnZL35Pzef%2bF6VifxarX%2f3Lbnx%2bPutdzmYXvU6pi00yV9p07pNYF6ZYVKeiLK%2bLfJEsay3xr%2brE7ndRVWhlfpNl4m%2fgc%2fDnX7tn3S8%2b%2fENn5z%2f%2fZNZJOSrWKv9qFHxubopax8o78ZhSrJIs%2bxFLP66NL8uy%2ba8AHAwMt4js6l1dKVMZDCEwBIIfw0LJCvJ9kaSV0giTVxuZpZuLZ7N70s%2fLp%2bdd1YYnGIfDh4BX0ZRSy0wBmgGIaDge%2fYlBElFf8OKwpeLPi4309xknxhG2sr5AKl5EVZHKPPFlrXxMO78LARoMQwgQwzRDgrpcajlXC62wF4xvKdtYxgSG2Nyv18Y%2fB5CmqXWZgWBGqV2pdIIzncYusDRDhhtLUyhUJBiQ30Px2L9jmF0z%2fZJiG74WA3Ej2v2FV16t6nwWP6m8WVv8ucoKP5ZtlfCbKphTNEqw%2bX4LxeA6YBkWk8vSPBUNy269mdWL5a4X10B1OwwDnrmGwcFh4sdbma8kwvwRhPdi8N05xPAqH8ShfFPNjBQBTXxeELj1%2b6VWWVJnzeqCXRlAJuI7vzVslSa5hAOonxe4ttBYEd%2fCPjRpXMZ4hcbC0LB8kTkQjW%2bxXHhxyHQGh7FiUejEtugLYGn2lwteMDYo6xWVC3A4KwzjiplpQyUzCW4CmJx0qcQrNO0ZjPZ9s41p348m%2fdFjEN6JwQ2%2fwrG5ZtItduW%2fxUiELENjSaiVPcsYaKg59wc33C4vLItJ8n0LeBhihvEOTZliVJrjDOM%2bFktsY80Cw7jk82ILGPZGjHdqyRpT6xiG2c2FrXugeT9hMry5sCALukfuR6EI7ngnWJLG%2b1bs7PyMy%2f9FYvnfB%2f%2f0r4e8Q5PtaNg%2fiD7PrdJWizIIMggmj4HAac%2f5RJm%2f0GFS8LwgsyGppcKY%2fNUf0h7Ju1BWSY4wLcQ4CsbigdcBrCx0JVNqxHi%2bb99a%2bHHgIaVM6yUEBEQK%2fQNYIjoWcx72Zmv2I3Ik%2bhMx4Ny%2fqi32L4eD8agHFpz1zRpGQeEH41zxwdVrlSySmF4p%2fSQFuLcTT%2bpMLJdaLWWl5mQAQWsT4T2Ao9F0L%2fVaafjR6%2fRQapp6V1OuWtPUO5m%2bt3NuJJ%2bqTYSE6TmOuPEc6E3E0cwnbhz%2fR3GyYWrsE26I75oTgdDUxWDhkzQ3ls9UJ6KytyFIxo3qg%2b5ESDS8eKYcrnyO8kQ4rfTENDbv2hPBtMs4OxiIy7H6RDzNEOqy43H1JwJxXg%2b5wZACRRAHEhQ3jM81KFs1HKeOfWeHAoEl9ECG4hae%2f9KhiMwVoriBYZBcJYqAPkpR3LBcLYqQxq0YxQ3kEzWKeGDNaeUobkT24hT0KEJxHktoeWMLhLXkgyLVJBxJUtxYnDsU274viKfZdeBrXnchNttaVYpYnHWH48HHMqEu1ZSQK0xxC9EHZapFOpCmuEHZGKE2RUCuOMWWhlocqFNNiPCXv%2bjRiy3PXp8ingOBii0SKFRE8y5RsUUBjYpQmmUHJxBbFFCpCMXeuLVPrGyBQED6FIjdbYjt1KhUEVJzUqW1lG14QKsilgOxii3NXq0iJOe8wLolgF5FPAeCFdsQgWLVRMeRrNjCgGZFMEeiFVseUK2IB25BuM8d1K2I5Ui4YhsbVK4I6EC64objaldE0771oHjFjQUPOa56RTyOfMWNx244e%2f2KgBxxiS0QaEvHLKxXAtSwCOhIxOIWIOca8aOKNfXevLd%2fAQ%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '365837' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:29 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - e7c9e392-0fad-4023-96ef-c1fffcd48f8b + - 9c8dc498-7be2-4745-a8f6-07575b987070 + - e8a7a7fd-ea5f-41b2-bbf4-ee13d8474375 + - 75debc06-2971-4b6a-94b5-e5a1cacc9d47 + - 3990f31a-fc48-4e1d-a507-a08389ada6a5 + - de592c7d-1acb-41c7-b024-776eae75e063 + - 7ffc69a6-cff2-4bac-aa0b-cd18e0c01306 + - 2fa00b31-2f54-4dcd-b35c-545b07c09607 + - 495193f1-18db-4764-8443-175941f11b95 + - b77b0c77-d61b-4bbd-981d-da70cb0cf9b9 + - 1811a308-aa08-4324-9b50-7873e535fad0 + - acaed3e4-8404-46c5-bf6f-8dc1f50a7d07 + - 38a862e4-15a4-4ec4-8ef8-a298dbe77790 + - a1a287ca-0401-4ef0-a766-c79c447d0ee7 + - 89f6bfd8-7df1-4fd0-8d61-5c12b029b7f5 + - c6ec0b20-1b55-4d34-b1eb-0a3fc5c830ee + - 8ed69348-48c8-460b-a608-3af0a142d2b0 + - 3a155a48-3b3f-4a4f-bd2c-e03eb3a3b0f4 + - b5cf87e5-c7b3-405e-a532-fe9f23b95954 + - 950f06b4-830d-49b5-9e48-5b5f8be4e24c + - f4645a30-373c-416b-83b3-8f1fa2f27468 + - 94963754-4231-41b6-84c1-9a67f78a565f + - 3d3b07a1-887d-4a36-a6f3-f0689f6f4b61 + - 91f1f4af-0c32-4944-9c8e-ffc1013b23f7 + - 525d1b76-b708-4998-8ad4-c97704c73078 + - 3a40b88b-c2fa-4086-a4de-340ba44a1b9c + - b62410c1-c042-4a36-915d-704142e9486b + - 44c9f9c4-f3d3-4cd6-b267-0f398f68fbe7 + - c2046b99-67e0-4aaa-b0ed-e9c83bacb9df + - 30a601ed-4d74-48fc-8332-1f0e967e9930 + - 6cb71e7e-59c8-4408-b0c2-ded012c9afd7 + - 2bf4e2a4-7362-4866-896a-5cefe7a0bd70 + - e7b887ee-fb49-4949-859a-a7ce6be554e5 + - 2a867a82-2b22-4e96-a2ef-219fd9506d61 + - efc55725-4080-4f8a-8949-c9f7543a8b83 + - 63c82e4c-22ed-4a17-96cc-d6de888c2f09 + - 4fecc546-8a0e-485c-b6e3-cdf1c8132a3d + - 001dbe90-d0c2-4b54-9ccc-1805e7806e6c + - b9c2b555-1e82-48be-a030-80a8c112f766 + - e206c7c2-e525-43eb-9a95-f1cd819a2626 + - 1db3e0b1-96b0-4530-b434-60a4ca85b360 + - e183284a-7871-4234-bf82-08f687f4ef03 + - d175fbad-e346-4a6f-a6fd-88f434f65c64 + - 7f02e3d4-cb1f-4edf-8840-a29da8321ada + - ad213174-b0eb-4882-8284-3efd0700287d + - b0b0a9e1-a2e0-41c5-8885-94b2796671d9 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: A998BFEA0DD74AA5864B443812596457 Ref B: MAA201060513049 Ref C: 2025-08-15T03:19:26Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZtbT%2BNGFID/i1X1CRMIS6MiraopeNsUSKidKF2Ul4kzCU58Y8ZOsiD%2Be885doZJoFJfzxuwyq6%2BPdeZ%2BXj1crWr7pJ8bbyrV28SRKPrYDAKxd048q68p6oqzVWnk8lcLlWm8upUvtRancZF1jH1zMQ6KaukyE2n15tfytnZL35Pzef%2BF6VifxarX/3Lbnx%2BPutdzmYXvU6pi00yV9p07pNYF6ZYVKeiLK%2BLfJEsay3xr%2BrE7ndRVWhlfpNl4m/gc/DnX7tn3S8%2B/ENn5z/ZNZJOSrWKv9qFHxubopax8o78ZhSrJIs%2BxFLP66NL8uy%2Ba8AHAwMt4js6l1dKVMZDCEwBIIfw0LJCvJ9kaSV0giTVxuZpZuLZ7N70s/Lp%2Bdd1YYnGIfDh4BX0ZRSy0wBmgGIaDge/YlBElFf8OKwpeLPi4309xknxhG2sr5AKl5EVZHKPPFlrXxMO78LARoMQwgQwzRDgrpcajlXC62wF4xvKdtYxgSG2Nyv18Y/B5CmqXWZgWBGqV2pdIIzncYusDRDhhtLUyhUJBiQ30Px2L9jmF0z/ZJiG74WA3Ej2v2FV16t6nwWP6m8WVv8ucoKP5ZtlfCbKphTNEqw%2BX4LxeA6YBkWk8vSPBUNy269mdWL5a4X10B1OwwDnrmGwcFh4sdbma8kwvwRhPdi8N05xPAqH8ShfFPNjBQBTXxeELj1%2B6VWWVJnzeqCXRlAJuI7vzVslSa5hAOonxe4ttBYEd/CPjRpXMZ4hcbC0LB8kTkQjW%2BxXHhxyHQGh7FiUejEtugLYGn2lwteMDYo6xWVC3A4KwzjiplpQyUzCW4CmJx0qcQrNO0ZjPZ9s41p348m/dFjEN6JwQ2/wrG5ZtItduW/xUiELENjSaiVPcsYaKg59wc33C4vLItJ8n0LeBhihvEOTZliVJrjDOM%2BFktsY80Cw7jk82ILGPZGjHdqyRpT6xiG2c2FrXugeT9hMry5sCALukfuR6EI7ngnWJLG%2B1bs7PyMy/9FYvnfB/0r4e8Q5PtaNg/iD7PrdJWizIIMggmj4HAac/5RJm/0GFS8LwgsyGppcKY/NUf0h7Ju1BWSY4wLcQ4CsbigdcBrCx0JVNqxHi%2Bb99a%2BHHgIaVM6yUEBEQK/QNYIjoWcx72Zmv2I3Ik%2BhMx4Ny/qi32L4eD8agHFpz1zRpGQeEH41zxwdVrlSySmF4p/SQFuLcTT%2BpMLJdaLWWl5mQAQWsT4T2Ao9F0L/VaafjR6/RQapp6V1OuWtPUO5m%2Bt3NuJJ%2BqTYSE6TmOuPEc6E3E0cwnbhz/R3GyYWrsE26I75oTgdDUxWDhkzQ3ls9UJ6KytyFIxo3qg%2B5ESDS8eKYcrnyO8kQ4rfTENDbv2hPBtMs4OxiIy7H6RDzNEOqy43H1JwJxXg%2B5wZACRRAHEhQ3jM81KFs1HKeOfWeHAoEl9ECG4hae/9KhiMwVoriBYZBcJYqAPkpR3LBcLYqQxq0YxQ3kEzWKeGDNaeUobkT24hT0KEJxHktoeWMLhLXkgyLVJBxJUtxYnDsU274viKfZdeBrXnchNttaVYpYnHWH48HHMqEu1ZSQK0xxC9EHZapFOpCmuEHZGKE2RUCuOMWWhlocqFNNiPCXv%2BjRiy3PXp8ingOBii0SKFRE8y5RsUUBjYpQmmUHJxBbFFCpCMXeuLVPrGyBQED6FIjdbYjt1KhUEVJzUqW1lG14QKsilgOxii3NXq0iJOe8wLolgF5FPAeCFdsQgWLVRMeRrNjCgGZFMEeiFVseUK2IB25BuM8d1K2I5Ui4YhsbVK4I6EC64objaldE0771oHjFjQUPOa56RTyOfMWNx244e/2KgBxxiS0QaEvHLKxXAtSwCOhIxOIWIOca8aOKNfXevLd/AQ%3D%3D + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:50+00:00", "endpoint": "https://featurefiltertestquqw5w3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestquqw5w3", + "name": "FeatureFilterTestquqw5w3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:30+00:00", "endpoint": "https://featurefiltertestvmh264rozmfl2rfdmwj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestvmh264rozmfl2rfdmwj", + "name": "FeatureFilterTestvmh264rozmfl2rfdmwj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://featurefiltertestwroox3kw3473yar2iys.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestwroox3kw3473yar2iys", + "name": "FeatureFilterTestwroox3kw3473yar2iys", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:17+00:00", "endpoint": "https://featurenamespacetest3zfo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetest3zfo", + "name": "FeatureNamespaceTest3zfo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-29T23:28:21+00:00", "endpoint": "https://featurenamespacetest43nd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3deuywmwdctmiw3s7hmjcw2tmqnelmu4o67k22372j3wxo6fmrhq2w3zzwjipe7l5/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetest43nd", + "name": "FeatureNamespaceTest43nd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://featurenamespacetestdm3m.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestdm3m", + "name": "FeatureNamespaceTestdm3m", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://featurenamespacetestl2rv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestl2rv", + "name": "FeatureNamespaceTestl2rv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:58:27+00:00", "endpoint": "https://featurenamespacetestomjxuvpkpmgwfeje.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:58:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:58:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestomjxuvpkpmgwfeje", + "name": "FeatureNamespaceTestomjxuvpkpmgwfeje", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:28+00:00", "endpoint": "https://featurenamespacetestooeq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestooeq", + "name": "FeatureNamespaceTestooeq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:36:08+00:00", "endpoint": "https://featurenamespacetestvjoivvcjifknwzao.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:36:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:36:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestvjoivvcjifknwzao", + "name": "FeatureNamespaceTestvjoivvcjifknwzao", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://featurenamespacetestxed3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestxed3", + "name": "FeatureNamespaceTestxed3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://featurenamespacetestysdks2bhjk7idleh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestysdks2bhjk7idleh", + "name": "FeatureNamespaceTestysdks2bhjk7idleh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:14+00:00", "endpoint": "https://featuretest3fn4mdqdwkvlndvuwfdofk3nr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretest3fn4mdqdwkvlndvuwfdofk3nr", + "name": "FeatureTest3fn4mdqdwkvlndvuwfdofk3nr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:20+00:00", "endpoint": "https://featuretest4o7tljrbfkuwj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretest4o7tljrbfkuwj", + "name": "FeatureTest4o7tljrbfkuwj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://featuretestckfolm256bht24scu2gxt2jxo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestckfolm256bht24scu2gxt2jxo", + "name": "FeatureTestckfolm256bht24scu2gxt2jxo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:38+00:00", "endpoint": "https://featuretestct5gfchdp63sj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestct5gfchdp63sj", + "name": "FeatureTestct5gfchdp63sj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:49:44+00:00", "endpoint": "https://featuretestk65tt5ts6zra7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:49:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:49:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk4hbkzkjzu2at45fpfafydyfdxvqrlfr3xepr3lp6uzumo5kdsauqvuew6f3tw62u/providers/Microsoft.AppConfiguration/configurationStores/featuretestk65tt5ts6zra7", + "name": "FeatureTestk65tt5ts6zra7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:15+00:00", "endpoint": "https://featuretestkqkahggahaewy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestkqkahggahaewy", + "name": "FeatureTestkqkahggahaewy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:14+00:00", "endpoint": "https://featuretesto4e67aajlsexw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretesto4e67aajlsexw", + "name": "FeatureTesto4e67aajlsexw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:29+00:00", "endpoint": "https://featuretestop22xb7epknx4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestop22xb7epknx4", + "name": "FeatureTestop22xb7epknx4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:31+00:00", "endpoint": "https://featuretestzx7ts5ebrspx23s53i5nb2k2y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestzx7ts5ebrspx23s53i5nb2k2y", + "name": "FeatureTestzx7ts5ebrspx23s53i5nb2k2y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-07-24T07:29:54+00:00", "endpoint": "https://freestore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-24T07:29:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:18:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestore", + "name": "freeStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-09T07:58:37+00:00", "endpoint": "https://haiyiwen-010925.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-01-09T07:58:37+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-01T21:11:00+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-010925", + "name": "haiyiwen-010925", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-16T19:14:44+00:00", "endpoint": "https://haiyiwen-eus-0116.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-01-16T19:14:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-06-11T15:57:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-0116", + "name": "haiyiwen-eus-0116", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-01-16T08:16:09+00:00", + "endpoint": "https://haiyiwen-eus-011625.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-011625/privateEndpointConnections/pe-test-eus2-011625", + "name": "pe-test-eus2-011625", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.Network/privateEndpoints/pe-test-eus2-011625"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-16T08:16:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:06:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-011625", + "name": "haiyiwen-eus-011625", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2024-03-11T14:22:45+00:00", "endpoint": "https://haiyiwen-eus-0311.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-03-11T14:22:45+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-04T23:30:27+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-0311", + "name": "haiyiwen-eus-0311", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-10T16:50:17+00:00", "endpoint": "https://haiyiwen-templatedeployment-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-10T16:50:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-10T16:50:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-templatedeployment-1", + "name": "haiyiwen-templatedeployment-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "640e6a52-a59d-48cf-a8d4-f41017c598fe", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-18T13:57:31+00:00", + "endpoint": "https://identitytest35gnbkkbe4fuezy67dlwn2y5.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:57:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:58:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytest35gnbkkbe4fuezy67dlwn2y5", + "name": "IdentityTest35gnbkkbe4fuezy67dlwn2y5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "34ffa33e-f25d-4c67-9253-c2d17c037adc", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-19T19:51:15+00:00", + "endpoint": "https://identitytestbe2akedryikn4m35wjkaqprj.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestbe2akedryikn4m35wjkaqprj", + "name": "IdentityTestbe2akedryikn4m35wjkaqprj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "438e333f-bb2e-497c-97b8-dd202b78c026", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-08-14T05:50:01+00:00", + "endpoint": "https://identitytestcs7kbf253whm.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestcs7kbf253whm", + "name": "IdentityTestcs7kbf253whm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "5a4a8ed8-9446-4999-93d2-9818ea8132a9", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T03:43:27+00:00", + "endpoint": "https://identitytestf72x2di6qyer.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestf72x2di6qyer", + "name": "IdentityTestf72x2di6qyer", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "b0ee3229-1ce2-40d1-a196-b8459b9f9d6b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T04:32:16+00:00", + "endpoint": "https://identitytesthm4vi6lxafkx.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytesthm4vi6lxafkx", + "name": "IdentityTesthm4vi6lxafkx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "20901f43-0e74-480b-9d79-80b7a5bda9d3", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T02:53:34+00:00", + "endpoint": "https://identitytestkpchhiqxtnsq.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestkpchhiqxtnsq", + "name": "IdentityTestkpchhiqxtnsq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "42e1eeb5-d772-47fd-a51c-ab9664dbc084", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-18T13:35:06+00:00", + "endpoint": "https://identitytestpt6bwjon56pcoo6xapfdkyur.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:35:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:35:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestpt6bwjon56pcoo6xapfdkyur", + "name": "IdentityTestpt6bwjon56pcoo6xapfdkyur", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7x3az6ip3htuovmj7yywt4wnb4e2pzvtynszyldonhf5uvclyl523rjteqosjhkqw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/UserAssignedIdentityten5": + {"principalId": "b7e8662e-ea87-44a8-a499-f612e314174c", "clientId": "c555e5da-6354-4a44-acaa-c1226a17c985"}}, + "principalId": "91287d71-e497-4d5c-8782-9eb2d16347f4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-12-03T08:41:53+00:00", + "endpoint": "https://identitytestqlutj2gls4u7.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:53+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7x3az6ip3htuovmj7yywt4wnb4e2pzvtynszyldonhf5uvclyl523rjteqosjhkqw/providers/Microsoft.AppConfiguration/configurationStores/identitytestqlutj2gls4u7", + "name": "IdentityTestqlutj2gls4u7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "209c3dad-96ee-4da7-bf9b-81bcb4c6ee89", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T02:22:10+00:00", + "endpoint": "https://identitytestwha7v4vki3m5.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestwha7v4vki3m5", + "name": "IdentityTestwha7v4vki3m5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:59:07+00:00", "endpoint": "https://importexporttest4buijfjw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:59:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:59:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdewrmekwlmmelzxyujxxqakoibx7umiujirxwe7z5lqr6mkvdzyuw5ovod645k3ab/providers/Microsoft.AppConfiguration/configurationStores/importexporttest4buijfjw", + "name": "ImportExportTest4buijfjw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:23+00:00", "endpoint": "https://importexporttestcnu3plvdikjy7dxroazf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestcnu3plvdikjy7dxroazf", + "name": "ImportExportTestcnu3plvdikjy7dxroazf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:15+00:00", "endpoint": "https://importexporttestfllunlafc2qqdvoasyuk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestfllunlafc2qqdvoasyuk", + "name": "ImportExportTestfllunlafc2qqdvoasyuk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:07+00:00", "endpoint": "https://importexporttestgkjpjcmg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:50:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:50:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestgkjpjcmg", + "name": "ImportExportTestgkjpjcmg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:41:57+00:00", "endpoint": "https://importexporttestjozvptem.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:41:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs4u4depezol5gm5zemiy4hklc4cl7kot6w4mdlqmsd3nlq6bhmbo47vaorof2y7on/providers/Microsoft.AppConfiguration/configurationStores/importexporttestjozvptem", + "name": "ImportExportTestjozvptem", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:00:30+00:00", "endpoint": "https://importexporttestoggywcna.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:00:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:00:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestoggywcna", + "name": "ImportExportTestoggywcna", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:07+00:00", "endpoint": "https://importexporttestukq4e3atuwnwdnrzlyim.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestukq4e3atuwnwdnrzlyim", + "name": "ImportExportTestukq4e3atuwnwdnrzlyim", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:39:40+00:00", "endpoint": "https://importexporttestyouwfl6v.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:39:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:39:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestyouwfl6v", + "name": "ImportExportTestyouwfl6v", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://importtest7ful2grtebgoiq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtest7ful2grtebgoiq", + "name": "ImportTest7ful2grtebgoiq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://importtestgiddobrgr672gjpl3hucqravfy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestgiddobrgr672gjpl3hucqravfy", + "name": "ImportTestgiddobrgr672gjpl3hucqravfy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://importtestlypau4klicvvgj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestlypau4klicvvgj", + "name": "ImportTestlypau4klicvvgj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://importtestq7zk6uhonoio5k.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestq7zk6uhonoio5k", + "name": "ImportTestq7zk6uhonoio5k", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:44:47+00:00", "endpoint": "https://importtesttcbikylpv6ng27xb3emuessgdi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:44:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:44:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtesttcbikylpv6ng27xb3emuessgdi", + "name": "ImportTesttcbikylpv6ng27xb3emuessgdi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:11+00:00", "endpoint": "https://importtestvguwb2vces34ma.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestvguwb2vces34ma", + "name": "ImportTestvguwb2vces34ma", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://importtestxpbvk6phmolm2x.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestxpbvk6phmolm2x", + "name": "ImportTestxpbvk6phmolm2x", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T14:07:21+00:00", "endpoint": "https://importtestxx236biyz2eshdvim62cvnctxv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T14:07:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T14:07:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestxx236biyz2eshdvim62cvnctxv", + "name": "ImportTestxx236biyz2eshdvim62cvnctxv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d0a289d3-184f-4608-bc59-c38f24b695a8", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-05-01T18:05:52+00:00", + "endpoint": "https://jimmyca-ai-sample.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-05-01T18:05:52+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-06-23T02:01:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-ai-sample", + "name": "jimmyca-ai-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-16T17:00:19+00:00", "endpoint": "https://jimmyca-eus-rep.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-16T17:00:19+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-01-06T21:48:03+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-eus-rep", + "name": "jimmyca-eus-rep", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-04-04T02:23:55+00:00", + "endpoint": "https://jiyu-createtest5.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, "privateEndpointConnections": null, + "publicNetworkAccess": "Disabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 3, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-04T02:23:55+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-04-04T02:24:08+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-policytest/providers/Microsoft.AppConfiguration/configurationStores/jiyu-createtest5", + "name": "jiyu-createtest5", "tags": {"tag": "tagv"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-03T21:56:21+00:00", "endpoint": "https://jiyu-eus.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-eus", + "name": "jiyu-pe-eus", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-eus"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-weu", + "name": "jiyu-pe-weu", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-weu"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-eus2", + "name": "jiyu-pe-eus2", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-eus2"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-test", + "name": "jiyu-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-03T21:56:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-03T21:56:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus", + "name": "jiyu-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2023-02-15T23:49:31+00:00", "endpoint": "https://jiyu-eus1.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://jiyu-keyvault1.vault.azure.net/keys/kekeke", + "identityClientId": null}}, "privateEndpointConnections": [], "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-15T23:49:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-08T23:43:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus1", + "name": "jiyu-eus1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "fbaa111b-8b39-4f75-906d-b4300c88aef1", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-02-16T01:50:00+00:00", + "endpoint": "https://jiyu-eus3.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus3/privateEndpointConnections/staticip-test", + "name": "staticip-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/staticip-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-16T01:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T00:08:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus3", + "name": "jiyu-eus3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-18T23:30:42+00:00", "endpoint": "https://jiyu-policyteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-18T23:30:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-19T00:01:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-policytest2/providers/Microsoft.AppConfiguration/configurationStores/jiyu-policyteststore", + "name": "jiyu-policyteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-29T21:47:07+00:00", "endpoint": "https://jiyu-teststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore1/privateEndpointConnections/jiyu-pe-5", + "name": "jiyu-pe-5", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-5"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T21:47:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-02T22:07:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore1", + "name": "jiyu-teststore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-03-19T23:10:19+00:00", "endpoint": "https://jiyu-throttle-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-03-19T23:10:19+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2022-10-11T23:32:37+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-throttle-1", + "name": "jiyu-throttle-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-17T00:37:26+00:00", "endpoint": "https://jlinares-appconfig-eastus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-17T00:37:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-17T01:55:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-eventgridtests/providers/Microsoft.AppConfiguration/configurationStores/jlinares-appconfig-eastus", + "name": "jlinares-appconfig-eastus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-11-18T20:26:57+00:00", "endpoint": "https://jlinares-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-18T20:26:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-02T01:15:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-eus", + "name": "jlinares-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-15T05:37:24+00:00", "endpoint": "https://junbchenconfig-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-pe/privateEndpointConnections/junbchen-pe-test", + "name": "junbchen-pe-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/junbchen-pe-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-15T05:37:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-15T08:42:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-pe", + "name": "junbchenconfig-pe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-19T04:06:47+00:00", "endpoint": "https://juniwang-app-ev2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-19T04:06:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-19T04:06:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-aks/providers/Microsoft.AppConfiguration/configurationStores/juniwang-app-ev2", + "name": "juniwang-app-ev2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d25770c8-9687-44f3-a3bd-cca223b9c6a4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-08T03:33:40+00:00", + "endpoint": "https://juniwang-appc.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-08T03:33:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T23:59:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-aks/providers/Microsoft.AppConfiguration/configurationStores/juniwang-appc", + "name": "juniwang-appc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-30T16:59:23+00:00", "endpoint": "https://kjeong-store-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-30T16:59:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-30T16:59:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/kjeong-store-eus", + "name": "kjeong-store-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://kvrevisiontest4fqq5hbnxzmfbwe5dby2vr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontest4fqq5hbnxzmfbwe5dby2vr", + "name": "KVRevisionTest4fqq5hbnxzmfbwe5dby2vr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://kvrevisiontest4kyrrschro.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontest4kyrrschro", + "name": "KVRevisionTest4kyrrschro", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://kvrevisiontestanuibrjieg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestanuibrjieg", + "name": "KVRevisionTestanuibrjieg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://kvrevisiontestibwkfz57qn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestibwkfz57qn", + "name": "KVRevisionTestibwkfz57qn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:10+00:00", "endpoint": "https://kvrevisiontestkoz2orto53hamn6kwqjrwi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestkoz2orto53hamn6kwqjrwi", + "name": "KVRevisionTestkoz2orto53hamn6kwqjrwi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:57+00:00", "endpoint": "https://kvrevisiontestsnib44xkg5dbxlix2d6pep.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestsnib44xkg5dbxlix2d6pep", + "name": "KVRevisionTestsnib44xkg5dbxlix2d6pep", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:33+00:00", "endpoint": "https://kvrevisiontestuexzu42fm2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestuexzu42fm2", + "name": "KVRevisionTestuexzu42fm2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://kvrevisiontestxsqvwqjrg6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestxsqvwqjrg6", + "name": "KVRevisionTestxsqvwqjrg6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:02:56+00:00", "endpoint": "https://kvsetimporttest67l2slzrs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:02:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:02:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttest67l2slzrs", + "name": "KVSetImportTest67l2slzrs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:52:40+00:00", "endpoint": "https://kvsetimporttest7fzhph6k3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:52:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:52:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttest7fzhph6k3", + "name": "KVSetImportTest7fzhph6k3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://kvsetimporttestdfvwuuwjhqdkccxnon3h5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestdfvwuuwjhqdkccxnon3h5", + "name": "KVSetImportTestdfvwuuwjhqdkccxnon3h5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:04+00:00", "endpoint": "https://kvsetimporttestdtjdjob3d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtkn533s5bkfkpe7zbxjwrxpfrqlsvdzfa42gkxliahqseuj7hheaq37kwjdupgrzz/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestdtjdjob3d", + "name": "KVSetImportTestdtjdjob3d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:44+00:00", "endpoint": "https://kvsetimporttestjetl2c5hb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2d54inm2sz2hhdcwlskpsbcf2rqtxjk35s6cz3paltnbiyqomhp2huz4qkwzxygfs/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestjetl2c5hb", + "name": "KVSetImportTestjetl2c5hb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://kvsetimporttestlfet64gx7k247aqey5idx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestlfet64gx7k247aqey5idx", + "name": "KVSetImportTestlfet64gx7k247aqey5idx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T06:02:59+00:00", "endpoint": "https://kvsetimporttestn2hbyeqob.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T06:02:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T06:02:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestn2hbyeqob", + "name": "KVSetImportTestn2hbyeqob", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:42:14+00:00", "endpoint": "https://kvsetimporttestobgriqz5h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:42:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:42:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestobgriqz5h", + "name": "KVSetImportTestobgriqz5h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:07+00:00", "endpoint": "https://kvsetimporttestv6g2yjvgh3vknvlvyhyk6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:56:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:56:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestv6g2yjvgh3vknvlvyhyk6", + "name": "KVSetImportTestv6g2yjvgh3vknvlvyhyk6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:30:57+00:00", "endpoint": "https://kvsetimporttestx2c3iqwtw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:30:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:30:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestx2c3iqwtw", + "name": "KVSetImportTestx2c3iqwtw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:45:02+00:00", "endpoint": "https://kvtest56m7lyhkxttu5o7cy6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:45:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:45:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtest56m7lyhkxttu5o7cy6", + "name": "KVTest56m7lyhkxttu5o7cy6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://kvtest7gxwoslebimyurrpzo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtest7gxwoslebimyurrpzo", + "name": "KVTest7gxwoslebimyurrpzo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:47:50+00:00", "endpoint": "https://kvtesta5gfdkk3ofsqlz3axj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:47:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:47:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6tafb7kmkszhmrkpiaqncvjdbzopdvao2unlvdouj4qwnswxhzvwhnqwtuvfhap5f/providers/Microsoft.AppConfiguration/configurationStores/kvtesta5gfdkk3ofsqlz3axj", + "name": "KVTesta5gfdkk3ofsqlz3axj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:27+00:00", "endpoint": "https://kvtestaabkjvmmvryoyrcym4f23ipzwbr3il.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestaabkjvmmvryoyrcym4f23ipzwbr3il", + "name": "KVTestaabkjvmmvryoyrcym4f23ipzwbr3il", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:48+00:00", "endpoint": "https://kvtestazuhrmngjidjfiubou.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestazuhrmngjidjfiubou", + "name": "KVTestazuhrmngjidjfiubou", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:01+00:00", "endpoint": "https://kvtestblkljn3if2ed3lee4c.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu6kv5zqu66qjrcvxa7phtrzraaastvxrgb5ba5ksua3wgiaybmuxxco24istvbllk/providers/Microsoft.AppConfiguration/configurationStores/kvtestblkljn3if2ed3lee4c", + "name": "KVTestblkljn3if2ed3lee4c", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:58+00:00", "endpoint": "https://kvtestcncxmq2fygiiwpxlm5irfpslm6rv4y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestcncxmq2fygiiwpxlm5irfpslm6rv4y", + "name": "KVTestcncxmq2fygiiwpxlm5irfpslm6rv4y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:45+00:00", "endpoint": "https://kvtestctemdbzrufgk7gou63.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsjj2m7spcrfqtj5d6xghazzzkbnunaevcb2w5d3aw7nsxyv5srgumrba3fxgc5fj/providers/Microsoft.AppConfiguration/configurationStores/kvtestctemdbzrufgk7gou63", + "name": "KVTestctemdbzrufgk7gou63", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://kvtestddruwaekub4w4vikfhmilya5pnoqp6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestddruwaekub4w4vikfhmilya5pnoqp6", + "name": "KVTestddruwaekub4w4vikfhmilya5pnoqp6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:45:36+00:00", "endpoint": "https://kvtestdzk745w7veqm4qhmg7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:45:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:45:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestdzk745w7veqm4qhmg7", + "name": "KVTestdzk745w7veqm4qhmg7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:54:25+00:00", "endpoint": "https://kvtestedguv5zz26ia6jl5j6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:54:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:54:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestedguv5zz26ia6jl5j6", + "name": "KVTestedguv5zz26ia6jl5j6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://kvtestgypdqe3asrj2yppdaw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestgypdqe3asrj2yppdaw", + "name": "KVTestgypdqe3asrj2yppdaw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:38+00:00", "endpoint": "https://kvtesthhewfemq55gzr7f2ut.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyh2hpoaraulrpisivp7wvr6kewphm76xkiphd3smodzvjlevaaoetk2e5fmwkbvn6/providers/Microsoft.AppConfiguration/configurationStores/kvtesthhewfemq55gzr7f2ut", + "name": "KVTesthhewfemq55gzr7f2ut", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:13+00:00", "endpoint": "https://kvtesthtjrqiylsqskz3c6d5ejdr4mbl6buh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesthtjrqiylsqskz3c6d5ejdr4mbl6buh", + "name": "KVTesthtjrqiylsqskz3c6d5ejdr4mbl6buh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:57:03+00:00", "endpoint": "https://kvtestiaobbatslphjvsdvem.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:57:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:57:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgngwosihwuvyfcdzfp2vjsulqt7fl4vqupolm4lnvn7eojzu3kntls4upzts4b2mbd/providers/Microsoft.AppConfiguration/configurationStores/kvtestiaobbatslphjvsdvem", + "name": "KVTestiaobbatslphjvsdvem", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=3ZDdSsQwEIXfJYhXpmnr1mJhkbIIXlgEu971Jj%2bz3Wy3ScikRSx9d%2bMPuM%2fg5Zw5c4bvLMTAe3jWZkBSLeSxbvdvLanIMQSHFWMjN7yHEUxI%2bMfkIZF2ZDgJlF67oK1BVpaq4CK9oyUoRTcAkgoJ97TIZZaJshDitmTO21kr8MgaLb1FewhJ7dzOmoPuJ8%2b%2fopi8nNpgPeADd5rO8S7ut3mab2h8lGbXVzhot7cDmO0wB8CguRWCBzy742lGNcNI1ps%2fuBfzZM8qIkaR%2b7Huew89D6C%2bMyJw%2fdqQH3%2fD%2fQA%2bSkv320dHqu4%2fNNKRlayf"}' + headers: + cache-control: + - no-cache + content-length: + - '114080' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 0238b1a7-3547-4fb2-ac9a-5505a4297561 + - 459c8f41-8829-4db7-b023-2595a5aa7325 + - 23482615-08b1-4771-802c-90ce5d07138b + - ebfad323-63cc-485b-81d8-ba0bc429a1f0 + - 8778a530-c8b2-447d-bdbc-c1d4b6b78ffc + - 9d7187e5-2c75-4e63-94d5-8dd70eff47ac + - 4d806e50-ec7a-45d1-ac56-f90b7f87f15d + - ccce5e43-1055-4c5d-820a-360d522882f4 + - 6c471e5a-35ae-4138-a00f-4054860957f7 + - 2eda889b-eea3-4a20-a375-c407d27a2ed0 + - 16bdf3dd-825f-4546-a991-24ff10b5a74d + - b40066a5-2d77-4702-9063-991a2b3606ce + - e5dbc725-44d1-470f-8fd2-c025bc045f74 + - 6a37b103-e10f-4be1-ae6f-7b804ecf7512 + - e392e53b-ff1c-4a1a-a9a7-1d3d61f098aa + - 81e2a7c7-fe27-49b1-a621-ed55a4aac025 + - a1de0477-04d4-4b7e-ac93-4e4823b387e9 + - 6e6e7a62-c3ad-41dd-a845-3e9e10873ed1 + - 4ff29bf1-1340-4a1a-b9a3-758869d45525 + - c4795be8-d81b-4358-8e0e-79318c271df4 + - 12cdb143-71b8-4ac3-8790-06c6a7490e35 + - a830dfd4-6359-4797-9ef0-7a097951a9d4 + - 54752634-5eb2-40c6-85ab-f265a4256c50 + - 0e7d7413-0d41-43a1-ad34-de9dcc088a25 + - d8e00221-d6af-489b-80b6-ef424c3d8f99 + - 48048315-34ec-4da1-9541-6b54de0be604 + - 142fd4aa-300e-4eca-8cb1-1b892b42047e + - 67b852b1-563a-4836-a631-3f3fa1dde75b + - ea99b232-8b2c-4810-9acd-8396178f4d5e + - c7463cc3-b6f9-44b0-a034-655ef3fe47c9 + - c6c821e5-89e9-4f80-8d9d-69e597eda330 + - bdf29d57-4af0-4aea-a5ea-d60752780468 + - 6ed4d103-31d0-4373-9a57-c84aade70c57 + - 30fbf336-0931-45cb-ae64-08a9d2d100f9 + - bc6de95b-5a65-46b9-9a27-134bc9ae1d01 + - cd4b20b3-8b16-468a-b7d6-efebbf10aaca + - f84d4f05-aed6-4827-8d49-fcc8057bc8ac + - aa0ac9a3-c17c-4de0-b5c6-e9154410c310 + - 07c09e36-6d70-4bc0-a5ab-42feafeb70f5 + - d2691a52-26a2-4d18-a271-604454393a63 + - 4c639e0b-3317-483d-afa9-7ea562df95c4 + - 807cf9a8-43b9-41d5-a9d5-b22a448dc784 + - 3013fcf9-c244-4ffb-8033-1f458c419438 + - 8521796f-7b30-425b-ad61-fb1885c8fc37 + - ed5908ce-586a-4d3a-b68c-13e94bc1cb59 + - 04ee4ea6-a588-4a48-a915-797240b51f56 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16500' + x-msedge-ref: + - 'Ref A: 099AC4200D714F9283685086B824E45C Ref B: MAA201060513051 Ref C: 2025-08-15T03:19:30Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=3ZDdSsQwEIXfJYhXpmnr1mJhkbIIXlgEu971Jj%2Bz3Wy3ScikRSx9d%2BMPuM/g5Zw5c4bvLMTAe3jWZkBSLeSxbvdvLanIMQSHFWMjN7yHEUxI%2BMfkIZF2ZDgJlF67oK1BVpaq4CK9oyUoRTcAkgoJ97TIZZaJshDitmTO21kr8MgaLb1FewhJ7dzOmoPuJ8%2B/opi8nNpgPeADd5rO8S7ut3mab2h8lGbXVzhot7cDmO0wB8CguRWCBzy742lGNcNI1ps/uBfzZM8qIkaR%2B7Huew89D6C%2BMyJw/dqQH3/D/QA%2BSkv320dHqu4/NNKRlayf + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:51+00:00", "endpoint": "https://kvtestihwc3syiqee5ah3iga.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestihwc3syiqee5ah3iga", + "name": "KVTestihwc3syiqee5ah3iga", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:13+00:00", "endpoint": "https://kvtestizmnigytm42qanhxha.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestizmnigytm42qanhxha", + "name": "KVTestizmnigytm42qanhxha", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:42+00:00", "endpoint": "https://kvtestkopv2uhhschtzb2e5n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestkopv2uhhschtzb2e5n", + "name": "KVTestkopv2uhhschtzb2e5n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://kvtestl2ormjtchf7btc3f3u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvhvtc3xrd7c3vvwzmfi4ufblyqdjqcnuenotltaz3gnpg6ixy5v4czw52bht6tnea/providers/Microsoft.AppConfiguration/configurationStores/kvtestl2ormjtchf7btc3f3u", + "name": "KVTestl2ormjtchf7btc3f3u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:50+00:00", "endpoint": "https://kvtestloxzjt7t3tfagqhl2ap6xxngz4wpgd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestloxzjt7t3tfagqhl2ap6xxngz4wpgd", + "name": "KVTestloxzjt7t3tfagqhl2ap6xxngz4wpgd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://kvtesto5vmioemxphsuub3xx7r4sky45ni2f.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesto5vmioemxphsuub3xx7r4sky45ni2f", + "name": "KVTesto5vmioemxphsuub3xx7r4sky45ni2f", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:46+00:00", "endpoint": "https://kvtestp2kbuun66d6ps473pg7ysw3epzlwut.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestp2kbuun66d6ps473pg7ysw3epzlwut", + "name": "KVTestp2kbuun66d6ps473pg7ysw3epzlwut", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:09+00:00", "endpoint": "https://kvtestpj2t6uk6lvtsd7iun2vykrabrj5qjo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestpj2t6uk6lvtsd7iun2vykrabrj5qjo", + "name": "KVTestpj2t6uk6lvtsd7iun2vykrabrj5qjo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://kvtestppk7lrbah7ynxlhe33.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestppk7lrbah7ynxlhe33", + "name": "KVTestppk7lrbah7ynxlhe33", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://kvtestrsei3hg3nqsaujkzgg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestrsei3hg3nqsaujkzgg", + "name": "KVTestrsei3hg3nqsaujkzgg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:43+00:00", "endpoint": "https://kvtestsd77jfbv4d3uzcytfp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg4rrldloh2p7oo6rzuoqwvws4cpfwypu6bzbhqkwdnn3rwkl4dafchtml6zrkztbm/providers/Microsoft.AppConfiguration/configurationStores/kvtestsd77jfbv4d3uzcytfp", + "name": "KVTestsd77jfbv4d3uzcytfp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:38+00:00", "endpoint": "https://kvtesttptetw6qztfw3gv674.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesttptetw6qztfw3gv674", + "name": "KVTesttptetw6qztfw3gv674", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:34:30+00:00", "endpoint": "https://kvtestuycl4et7tf5eb7lsdu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:34:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:34:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestuycl4et7tf5eb7lsdu", + "name": "KVTestuycl4et7tf5eb7lsdu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://kvtestv3dtl6bonwids7ib5x.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestv3dtl6bonwids7ib5x", + "name": "KVTestv3dtl6bonwids7ib5x", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:24:19+00:00", "endpoint": "https://kvtestycmo2q63cxt6vvf67r.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:24:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:24:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestycmo2q63cxt6vvf67r", + "name": "KVTestycmo2q63cxt6vvf67r", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-20T02:14:07+00:00", "endpoint": "https://linglingye-appconfig-quickstart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-20T02:14:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-20T02:14:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linglingye-rg/providers/Microsoft.AppConfiguration/configurationStores/linglingye-appconfig-quickstart", + "name": "linglingye-appconfig-quickstart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-08T20:43:45+00:00", "endpoint": "https://mbtestappconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-08T20:43:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-09T22:26:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/mbtestappconfig", + "name": "mbTestAppConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-05T13:16:53+00:00", "endpoint": "https://mgich-agent-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-05T13:16:53+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T13:16:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-agent-demo", + "name": "mgich-agent-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-07-20T13:49:51+00:00", "endpoint": "https://mgich-demo-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-demo-store/privateEndpointConnections/mgich-demo-privatendpoint", + "name": "mgich-demo-privatendpoint", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.Network/privateEndpoints/mgich-demo-privatendpoint"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-20T13:49:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-29T09:44:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-demo-store", + "name": "Mgich-Demo-store", "tags": {"Tag1": "Value1"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-28T08:17:37+00:00", "endpoint": "https://mgich-dev-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-28T08:17:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-28T08:17:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-dev-store", + "name": "mgich-dev-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "userAssignedIdentities": + {}, "principalId": "7262de24-6e9f-4834-9f65-b1cb524e252e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-08-11T21:32:20+00:00", + "endpoint": "https://mgich-ff.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": null}}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-ff/privateEndpointConnections/mgich", + "name": "mgich", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.Network/privateEndpoints/mgich"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T21:32:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-26T15:07:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-ff", + "name": "Mgich-ff", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-27T23:35:45+00:00", "endpoint": "https://mgich-largestoretest-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-27T23:35:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-11T12:53:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-largestoretest-1", + "name": "Mgich-largestoretest-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-10T07:08:17+00:00", "endpoint": "https://mgich-readerstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-10T07:08:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-26T14:56:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-readerstore", + "name": "mgich-readerstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "8123be57-97f1-4182-b1b1-f6af700545c4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-10-04T16:57:29+00:00", + "endpoint": "https://mgich-stage-1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-04T16:57:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-04T17:38:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-stage-1", + "name": "mgich-stage-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-07-01T10:23:28+00:00", "endpoint": "https://mgich-store-no-experiments.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-01T10:23:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T17:05:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-store-no-experiments", + "name": "mgich-store-no-experiments", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-18T09:11:22+00:00", "endpoint": "https://mgich-store-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-18T09:11:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-18T09:11:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-store-pe", + "name": "mgich-store-pe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-04T18:17:49+00:00", "endpoint": "https://mgich-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-04T18:17:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-04T18:17:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-test2", + "name": "mgich-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mgich-userassignedIdentity": + {"principalId": "fe7ce57e-8668-4bc2-860c-a55b5ed3c20c", "clientId": "d272d921-c6fa-4394-889a-acb85a9de520"}, + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mgich-user2identity": + {"principalId": "d0c6a0b5-d9e2-4936-99e1-93f83c03fba5", "clientId": "246f2df7-bc14-43b6-bbab-292e9aa837c5"}}, + "principalId": "1faff273-6296-453e-8213-93e36511bafd", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2021-11-24T08:29:23+00:00", + "endpoint": "https://mgich-teststore.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": "d272d921-c6fa-4394-889a-acb85a9de520"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Enabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-11-24T08:29:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-30T12:33:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore", + "name": "Mgich-teststore", "tags": {"Tag1": "value 1"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-17T12:28:40+00:00", "endpoint": "https://mgich-teststore-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-17T12:28:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-11T13:06:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore-1", + "name": "mgich-teststore-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-14T09:20:39+00:00", "endpoint": "https://mgich-teststore-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-14T09:20:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-28T14:34:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore-3", + "name": "mgich-teststore-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-10T19:22:51+00:00", "endpoint": "https://mgich-teststore4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-10T19:22:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-03T09:10:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore4", + "name": "mgich-teststore4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-02T20:20:55+00:00", "endpoint": "https://mgich-teststsore-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-02T20:20:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-21T18:13:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststsore-3", + "name": "mgich-teststsore-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "a1c20165-034a-4ba2-8061-e0d4d16f24ae", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-20T22:42:06+00:00", + "endpoint": "https://mgmttest72er3mgxhdoinaqa.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnpau7zjt464gtz2wleqi36hu74ql74n5vvw35zhk7oaljwlxgx4oeph77eqifl5o5/providers/Microsoft.AppConfiguration/configurationStores/mgmttest72er3mgxhdoinaqa", + "name": "MgmtTest72er3mgxhdoinaqa", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "47a9f6ab-3291-480b-b56d-1e14e36050ea", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-19T19:55:12+00:00", + "endpoint": "https://mgmttestc7g3l35dzryuxxgvp4lglc5dizmw.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestc7g3l35dzryuxxgvp4lglc5dizmw", + "name": "MgmtTestc7g3l35dzryuxxgvp4lglc5dizmw", "tags": {"key": "value"}}, + {"type": "Microsoft.AppConfiguration/configurationStores", "location": "eastus", + "identity": {"type": "SystemAssigned", "principalId": "044952b4-d72c-472c-abf1-211644477cf9", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2025-07-10T04:40:17+00:00", "endpoint": "https://mgmttestdceucmwowzkwqmkq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:40:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:40:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestdceucmwowzkwqmkq", + "name": "MgmtTestdceucmwowzkwqmkq", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c635cc37-a672-4b57-bb8c-97c563ef1faa", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T05:32:22+00:00", + "endpoint": "https://mgmttestsmrvmso36npc46q2.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T05:32:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T05:32:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestsmrvmso36npc46q2", + "name": "MgmtTestsmrvmso36npc46q2", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c04393c4-b4ca-425c-ac71-d6fb8fd0e8c8", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T03:01:00+00:00", + "endpoint": "https://mgmttesttu422dgcjrdktv2i.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:01:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:01:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttesttu422dgcjrdktv2i", + "name": "MgmtTesttu422dgcjrdktv2i", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "029554f7-2d78-4e89-b35e-0def16f0607e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-12-03T08:41:56+00:00", + "endpoint": "https://mgmttesttyxczkyhxc6obdc3.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rga7cq7pqntyql7xxdl7ybrm5fu4ghzzzka7tz73vc26jiwpbnwrsibgsfkq7abl7dl/providers/Microsoft.AppConfiguration/configurationStores/mgmttesttyxczkyhxc6obdc3", + "name": "MgmtTesttyxczkyhxc6obdc3", "tags": {"Env": "Prod"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-13T21:11:18+00:00", "endpoint": "https://my-app-config-test-4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-13T21:11:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-13T21:11:18+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testresourcegroup/providers/Microsoft.AppConfiguration/configurationStores/my-app-config-test-4", + "name": "my-app-config-test-4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:47:59+00:00", "endpoint": "https://namingconventiontest5i2i.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:47:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:47:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontest5i2i", + "name": "NamingConventionTest5i2i", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:44+00:00", "endpoint": "https://namingconventiontestcmrm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestcmrm", + "name": "NamingConventionTestcmrm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:04+00:00", "endpoint": "https://namingconventiontestf6wx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdufzxonazjyfqql7zhvtnmptvqxvyghhi3piqf3w6fqffjd6elyw54aufbq4nohxe/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestf6wx", + "name": "NamingConventionTestf6wx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:14+00:00", "endpoint": "https://namingconventiontestr4z27s6inps2qahi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestr4z27s6inps2qahi", + "name": "NamingConventionTestr4z27s6inps2qahi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:57:50+00:00", "endpoint": "https://namingconventiontestzmts.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:57:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:57:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestzmts", + "name": "NamingConventionTestzmts", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:10+00:00", "endpoint": "https://newfmimport6jvm63gclqtfi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimport6jvm63gclqtfi", + "name": "NewFmImport6jvm63gclqtfi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:28+00:00", "endpoint": "https://newfmimport7breg65bpfkmk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimport7breg65bpfkmk", + "name": "NewFmImport7breg65bpfkmk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:42+00:00", "endpoint": "https://newfmimportcbirfdrxwcazblccfrcc56tr3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportcbirfdrxwcazblccfrcc56tr3", + "name": "NewFmImportcbirfdrxwcazblccfrcc56tr3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:13+00:00", "endpoint": "https://newfmimportifwskvg7yatnll65fmcw4lbvu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportifwskvg7yatnll65fmcw4lbvu", + "name": "NewFmImportifwskvg7yatnll65fmcw4lbvu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:23+00:00", "endpoint": "https://newfmimportiqle44dc5w75t.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportiqle44dc5w75t", + "name": "NewFmImportiqle44dc5w75t", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:21+00:00", "endpoint": "https://newfmimportycrjzhir3yc2jvaw5gj73xsh3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportycrjzhir3yc2jvaw5gj73xsh3", + "name": "NewFmImportycrjzhir3yc2jvaw5gj73xsh3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}, + "principalId": "2ace8798-912e-4525-8706-b2ea02068ac0", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-11-09T07:55:32+00:00", + "endpoint": "https://newstore.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-11-09T07:55:32+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-20T17:32:25+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/newstore", + "name": "NewStore", "tags": {"new ": "tag"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-07T17:33:44+00:00", "endpoint": "https://pipelinetask-teststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-07T17:33:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-07T17:33:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pipelinetask-canarytest/providers/Microsoft.AppConfiguration/configurationStores/pipelinetask-teststore", + "name": "pipelinetask-teststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-06T17:03:43+00:00", "endpoint": "https://portal-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-06T17:03:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T01:05:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test", + "name": "portal-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:40+00:00", "endpoint": "https://pubnetworknull26cngh42hn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5zneawsaijjrfwkpifdvbui3mpjvvozsommbvv2fvmzfoypa2gtwxcmwba2em7tm/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknull26cngh42hn", + "name": "PubNetworkNull26cngh42hn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:58+00:00", "endpoint": "https://pubnetworknullfgy4ldwvco.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T03:50:58+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T03:51:36+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknullfgy4ldwvco", + "name": "PubNetworkNullfgy4ldwvco", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:42:29+00:00", "endpoint": "https://pubnetworknulllk4mio7jtn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T04:42:29+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T04:43:09+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknulllk4mio7jtn", + "name": "PubNetworkNulllk4mio7jtn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:46+00:00", "endpoint": "https://pubnetworknullu2jkrdwwh23ireje5pi64g.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-03-19T19:56:46+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-19T19:57:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknullu2jkrdwwh23ireje5pi64g", + "name": "PubNetworkNullu2jkrdwwh23ireje5pi64g", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:41:50+00:00", "endpoint": "https://pubnetworktrueawirkzjx5u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T04:41:50+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T04:41:50+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktrueawirkzjx5u", + "name": "PubNetworkTrueawirkzjx5u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:18+00:00", "endpoint": "https://pubnetworktruelryl4o66fv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T03:50:18+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T03:50:18+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktruelryl4o66fv", + "name": "PubNetworkTruelryl4o66fv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:03+00:00", "endpoint": "https://pubnetworktrueqinrxqnezhqbvgsjjmoug5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-03-19T19:56:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-19T19:56:03+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktrueqinrxqnezhqbvgsjjmoug5", + "name": "PubNetworkTrueqinrxqnezhqbvgsjjmoug5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:41:57+00:00", "endpoint": "https://pubnetworktruet6yhv5rp5h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-12-03T08:41:57+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-12-03T08:41:57+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5zneawsaijjrfwkpifdvbui3mpjvvozsommbvv2fvmzfoypa2gtwxcmwba2em7tm/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktruet6yhv5rp5h", + "name": "PubNetworkTruet6yhv5rp5h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "493023af-0d46-48de-a070-eef831383228", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-11T12:40:56+00:00", + "endpoint": "https://replicastored2uyjofor3ac.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:40:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:40:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbkeprji7tmcxwyspsy2tof6gcb5zs6qod2fnn4tdtnbofbo3zzvokji5siqpbx3fv/providers/Microsoft.AppConfiguration/configurationStores/replicastored2uyjofor3ac", + "name": "ReplicaStored2uyjofor3ac", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-10T23:14:57+00:00", "endpoint": "https://rossgrambo-app-config-backup.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-10T23:14:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-10T23:35:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-app-config-backup", + "name": "rossgrambo-app-config-backup", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-20T22:16:45+00:00", "endpoint": "https://rossgrambo-app-configuration.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T22:16:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-11T00:24:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-app-configuration", + "name": "rossgrambo-app-configuration", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-08T18:53:19+00:00", "endpoint": "https://rossgrambo-flag-migration-testing.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-08T18:53:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T18:53:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-flag-migration-testing", + "name": "rossgrambo-flag-migration-testing", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-19T02:11:08+00:00", "endpoint": "https://rossgrambo-hackathon.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-19T02:11:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-19T02:11:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-hackathon/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-hackathon", + "name": "rossgrambo-hackathon", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-10T22:48:21+00:00", "endpoint": "https://samiconfigs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-10T22:48:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-04T18:58:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/samiconfigs", + "name": "samiconfigs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-01T18:44:00+00:00", "endpoint": "https://sdfsafdfdsffsf-albertofori.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-01T18:44:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-01T18:44:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/sdfsafdfdsffsf-albertofori", + "name": "sdfsafdfdsffsf-albertofori", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-04-06T23:31:37+00:00", "endpoint": "https://softdelete-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T23:31:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-15T06:08:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo", + "name": "softdelete-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/softdelete-demo-identity-2": + {"principalId": "c3b06559-ac00-409d-a3ec-183f811cfd0d", "clientId": "e6304037-2130-4a66-a0b5-0cef9e5fef38"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-06T22:35:49+00:00", + "endpoint": "https://softdelete-demo-cmk.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://softdelete-demo-keyvault.vault.azure.net/keys/key", + "identityClientId": "e6304037-2130-4a66-a0b5-0cef9e5fef38"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T22:35:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-07T23:34:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo-cmk", + "name": "softdelete-demo-cmk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/softdelete-demo-identity": + {"principalId": "d0286683-fe54-4978-b632-4879b57da219", "clientId": "e557af90-eee7-425b-9667-56b1faaaa184"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-06T23:32:42+00:00", + "endpoint": "https://softdelete-demo-purge-protection.azconfig.io", "encryption": + {"keyVaultProperties": {"keyIdentifier": "https://softdelete-demo-keyvault.vault.azure.net/keys/key", + "identityClientId": "e557af90-eee7-425b-9667-56b1faaaa184"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T23:32:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-06T23:33:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo-purge-protection", + "name": "softdelete-demo-purge-protection", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:16:25+00:00", "endpoint": "https://softdelete-retention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:16:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-14T23:15:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-retention", + "name": "softdelete-retention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:17:09+00:00", "endpoint": "https://softdelete-retention2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:17:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T05:18:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-retention2", + "name": "softdelete-retention2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:38:47+00:00", "endpoint": "https://source4w3kjzil5tkygz7f33.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:38:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:38:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source4w3kjzil5tkygz7f33", + "name": "Source4w3kjzil5tkygz7f33", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:17+00:00", "endpoint": "https://source4zg3mwqbsl6uidbigf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source4zg3mwqbsl6uidbigf", + "name": "Source4zg3mwqbsl6uidbigf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:49:30+00:00", "endpoint": "https://source5y7wpvryybmlgn255k.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:49:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:49:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source5y7wpvryybmlgn255k", + "name": "Source5y7wpvryybmlgn255k", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-29T23:28:22+00:00", "endpoint": "https://source756e3z4lxwuqzamkys.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtbmculosotxi5tvycr3ucsvrlgjvhqhtuqxxp5zjy4l3uns3dflynpwxjhqy2lti2/providers/Microsoft.AppConfiguration/configurationStores/source756e3z4lxwuqzamkys", + "name": "Source756e3z4lxwuqzamkys", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:41+00:00", "endpoint": "https://source7tkscrlyge2z2dwfnt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzsjv5ucgfl5xb3rkxbfhwzw2l663dsuksodvay6hol3lrqlffhbimwua3mxqneoxp/providers/Microsoft.AppConfiguration/configurationStores/source7tkscrlyge2z2dwfnt", + "name": "Source7tkscrlyge2z2dwfnt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:14+00:00", "endpoint": "https://sourcebonjncplltnwyxi3wxtbzajj3qudp7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcebonjncplltnwyxi3wxtbzajj3qudp7", + "name": "Sourcebonjncplltnwyxi3wxtbzajj3qudp7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:59:30+00:00", "endpoint": "https://sourceevcycu7vqqrwldss2d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:59:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:59:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceevcycu7vqqrwldss2d", + "name": "Sourceevcycu7vqqrwldss2d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:01+00:00", "endpoint": "https://sourceiawig3smul3natozz7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwyttwmni2xmbsaxrtp64sja6rdh2ocxcprrc5pwdogqijazx7f4vhljo5qfanoryn/providers/Microsoft.AppConfiguration/configurationStores/sourceiawig3smul3natozz7", + "name": "Sourceiawig3smul3natozz7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:38+00:00", "endpoint": "https://sourcesarqiu3ulixdcvfmne.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcesarqiu3ulixdcvfmne", + "name": "Sourcesarqiu3ulixdcvfmne", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:00+00:00", "endpoint": "https://sourcevsycmtag5msdxrntg4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguznozpjynfgaebftsnnrdc52h2scgoorpr6unkhktfxrcwsulo6qvsxb6b6j2jkfn/providers/Microsoft.AppConfiguration/configurationStores/sourcevsycmtag5msdxrntg4", + "name": "Sourcevsycmtag5msdxrntg4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:13+00:00", "endpoint": "https://sourcewh3zdqwqjr2ycwla34mzr57iwkd646.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewh3zdqwqjr2ycwla34mzr57iwkd646", + "name": "Sourcewh3zdqwqjr2ycwla34mzr57iwkd646", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:21+00:00", "endpoint": "https://sourcewrcreicjxj7w2yk2kl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewrcreicjxj7w2yk2kl", + "name": "Sourcewrcreicjxj7w2yk2kl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:42+00:00", "endpoint": "https://sourcewxcru6myjz22xt3cry.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewxcru6myjz22xt3cry", + "name": "Sourcewxcru6myjz22xt3cry", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://sourcexi35d6xknwvlpgfjdcjpfm4tbisikl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcexi35d6xknwvlpgfjdcjpfm4tbisikl", + "name": "Sourcexi35d6xknwvlpgfjdcjpfm4tbisikl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:04+00:00", "endpoint": "https://sourceykdeluxupgutssmtp4s2ndonnpmrfx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceykdeluxupgutssmtp4s2ndonnpmrfx", + "name": "Sourceykdeluxupgutssmtp4s2ndonnpmrfx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:27+00:00", "endpoint": "https://sourceyxduf5goewbviumeya.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceyxduf5goewbviumeya", + "name": "Sourceyxduf5goewbviumeya", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-02-14T14:44:25+00:00", "endpoint": "https://southcentralus-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-14T14:44:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-01-15T15:17:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/richardmuniu-appcfg-test/providers/Microsoft.AppConfiguration/configurationStores/southcentralus-test-store", + "name": "southcentralus-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-11T16:55:25+00:00", "endpoint": "https://spring-geo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T16:55:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-18T22:19:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-geo", + "name": "Spring-Geo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:03+00:00", "endpoint": "https://strictimporttest3vthtdkmhnlsf2jhpwqm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttest3vthtdkmhnlsf2jhpwqm", + "name": "StrictImportTest3vthtdkmhnlsf2jhpwqm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:01+00:00", "endpoint": "https://strictimporttesta5qjw7z4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiclp5jbwimqqqoxl5bbqjkggleqcwdnipdk4do7nmywdhkiwb6gnm6h3esjl6ekmb/providers/Microsoft.AppConfiguration/configurationStores/strictimporttesta5qjw7z4", + "name": "StrictImportTesta5qjw7z4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:47:05+00:00", "endpoint": "https://strictimporttestczhpt6di.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:47:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:47:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestczhpt6di", + "name": "StrictImportTestczhpt6di", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:04+00:00", "endpoint": "https://strictimporttestdwyif42s.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestdwyif42s", + "name": "StrictImportTestdwyif42s", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://strictimporttestj4kovvpa.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg43nb3b6jwngiura5rclypvjmdx62odg4tdxrdaytutt75yx2quuszpfdvp57kadz7/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestj4kovvpa", + "name": "StrictImportTestj4kovvpa", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://strictimporttestsagt6n6f6guarkkvv4ul.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestsagt6n6f6guarkkvv4ul", + "name": "StrictImportTestsagt6n6f6guarkkvv4ul", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://strictimporttestt36qwioiuroazvvivyy5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestt36qwioiuroazvvivyy5", + "name": "StrictImportTestt36qwioiuroazvvivyy5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:57:02+00:00", "endpoint": "https://strictimporttestvbzh72sl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:57:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:57:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestvbzh72sl", + "name": "StrictImportTestvbzh72sl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T20:57:06+00:00", "endpoint": "https://test-azconfig-net.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T20:57:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T20:57:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-net", + "name": "test-azconfig-net", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZDdSsQwEIXfJYhXpmnr1mJhkSKCFxbBXe96k5%2fZGmqTMJkusqXvbnQFfQUv58z5ZjhnYQ4%2b6Mm6MbJmYQ%2ftbv%2b6Yw17IwqxEWKSTg4wgaNMnmaETPtJxFlFjTaQ9S6KujaVVPkNr8EYvgHQXGm45VWpi0LVlVLXtQjoj9YARtFZjT76A2VtCPfeHewwo%2fw6JfTfaUceId7JYPkxcWm%2fLfNyw9OjvLi8iKMNez%2bC2xJE4vJ0hrkDYuvVb6pn9%2bjfTcqWRIlTOwwIgyQw33BK2r507OzvJI6ASVr6nyJ61vT%2fuoqerWz9BA%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '110916' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 487d4b57-cf90-4ffd-8b4c-5e8ab827f764 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 19259CF09B254F2C9148B025942ABCCA Ref B: MAA201060513011 Ref C: 2025-08-15T03:19:40Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZDdSsQwEIXfJYhXpmnr1mJhkSKCFxbBXe96k5/ZGmqTMJkusqXvbnQFfQUv58z5ZjhnYQ4%2B6Mm6MbJmYQ/tbv%2B6Yw17IwqxEWKSTg4wgaNMnmaETPtJxFlFjTaQ9S6KujaVVPkNr8EYvgHQXGm45VWpi0LVlVLXtQjoj9YARtFZjT76A2VtCPfeHewwo/w6JfTfaUceId7JYPkxcWm/LfNyw9OjvLi8iKMNez%2BC2xJE4vJ0hrkDYuvVb6pn9%2BjfTcqWRIlTOwwIgyQw33BK2r507OzvJI6ASVr6nyJ61vT/uoqerWz9BA%3D%3D + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T20:57:06+00:00", "endpoint": "https://test-azconfig-net-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T20:57:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T20:57:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-net-provider", + "name": "test-azconfig-net-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T21:01:29+00:00", "endpoint": "https://test-azconfig-python.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T21:01:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T21:01:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-python", + "name": "test-azconfig-python", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T21:01:29+00:00", "endpoint": "https://test-azconfig-python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T21:01:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T21:01:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-python-provider", + "name": "test-azconfig-python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-03-18T03:11:21+00:00", "endpoint": "https://test-deletion.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-03-18T03:11:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-03-18T03:11:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/richardmuniu-appcfg-test/providers/Microsoft.AppConfiguration/configurationStores/test-deletion", + "name": "test-deletion", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-09T22:36:24+00:00", "endpoint": "https://test-notification.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-09T22:36:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-09T23:17:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/test-notification", + "name": "test-notification", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-28T11:18:48+00:00", "endpoint": "https://test-revision-retention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-28T11:18:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T14:41:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/test-revision-retention", + "name": "test-revision-retention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-10T21:04:55+00:00", "endpoint": "https://test-template.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-10T21:04:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-10T21:04:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/test-template", + "name": "test-template", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-27T17:01:21+00:00", "endpoint": "https://testapp-1001.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-09-27T17:01:21+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-09-27T17:01:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-1001", + "name": "testapp-1001", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-27T16:59:45+00:00", "endpoint": "https://testapp-8778.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-8778/privateEndpointConnections/myconnection", + "name": "myconnection", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-AppConfiguration-6086/providers/Microsoft.Network/privateEndpoints/endpointxyz7285"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-27T16:59:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-27T16:59:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-8778", + "name": "testapp-8778", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T09:32:10+00:00", "endpoint": "https://testbug.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T09:32:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T13:16:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testbug", + "name": "testBug", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-13T17:58:05+00:00", "endpoint": "https://testcopilot.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-13T17:58:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:49:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testcopilot", + "name": "testCopilot", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-15T06:19:24+00:00", "endpoint": "https://testdev.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 172800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-15T06:19:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-25T08:00:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testdev", + "name": "testdev", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-25T21:04:05+00:00", "endpoint": "https://testdevsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-25T21:04:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-25T21:04:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/testdevsku", + "name": "testdevsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-23T07:57:12+00:00", "endpoint": "https://testrevisionretention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-23T07:57:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-23T07:58:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testrevisionretention", + "name": "testrevisionretention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-24T22:30:44+00:00", "endpoint": "https://teststestestestes.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-24T22:30:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-24T22:30:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-hackathon/providers/Microsoft.AppConfiguration/configurationStores/teststestestestes", + "name": "teststestestestes", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T07:43:13+00:00", "endpoint": "https://testtkeyvalueretention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T07:43:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:51:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testtkeyvalueretention", + "name": "testtkeyvalueretention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T07:29:41+00:00", "endpoint": "https://testuhyvu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 691200, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T07:29:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:45:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testuhyvu", + "name": "testuhyvu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-03-13T19:25:01+00:00", "endpoint": "https://webscoutscantarget.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-03-13T19:25:01+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-03-13T19:25:01+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/webscoutscantarget", + "name": "WebScoutScanTarget", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:21:32+00:00", "endpoint": "https://xuxu-sd-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:21:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-11T07:03:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-1", + "name": "xuxu-sd-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T21:37:20+00:00", "endpoint": "https://xuxu-sd-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T21:37:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T21:37:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-2", + "name": "xuxu-sd-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T21:41:29+00:00", "endpoint": "https://xuxu-sd-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T21:41:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T21:42:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-3", + "name": "xuxu-sd-3", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZDdSsQwEIXfJYhXpmm7W4OFRYoIXlgEu971Jj%2bzNdQmYZIuxdJ3N%2f6AvoKXc%2bacGb6zEgtLfDR2DKReyX3THV86UpPXGH2oGZuEFQNMYGMm3meETLmJhVkGhcZH42xgnOtKyPyactCa7gEUlQpuaFWqopC8knLHmUd3NhowsNYodMGdYtZ4f%2bfsyQwzis9TTP2duugQwq3whp5TLu0PZV7uaXqUF5cXYTT%2b6Eawh2VeZho03ZHt6pfmyT64N52YkihwaoYBYRAR9FcoETbPLfn2twJHwCSt%2fU8BPan7f1lBTzayfQA%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '22507' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 41a5b296-eb0e-44bf-9276-28dcabbd464f + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 094D3C9473BE4D5EBA2EAF94421DEC79 Ref B: MAA201060514047 Ref C: 2025-08-15T03:19:43Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZDdSsQwEIXfJYhXpmm7W4OFRYoIXlgEu971Jj%2BzNdQmYZIuxdJ3N/6AvoKXc%2BacGb6zEgtLfDR2DKReyX3THV86UpPXGH2oGZuEFQNMYGMm3meETLmJhVkGhcZH42xgnOtKyPyactCa7gEUlQpuaFWqopC8knLHmUd3NhowsNYodMGdYtZ4f%2BfsyQwzis9TTP2duugQwq3whp5TLu0PZV7uaXqUF5cXYTT%2B6Eawh2VeZho03ZHt6pfmyT64N52YkihwaoYBYRAR9FcoETbPLfn2twJHwCSt/U8BPan7f1lBTzayfQA%3D + response: + body: + string: '{"value": []}' + headers: + cache-control: + - no-cache + content-length: + - '13' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 60231d73-bb67-48f8-8ad1-1c5c901cf15d + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: F77451AACF4142C2A5D8998DC3CCA181 Ref B: MAA201060515051 Ref C: 2025-08-15T03:19:46Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01 + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-06-26T18:04:42+00:00", "endpoint": "https://abc12332112.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-06-26T18:04:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-28T11:10:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/abc12332112", + "name": "abc12332112", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T17:30:35+00:00", "endpoint": "https://albertofori-notification-wcus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-10T17:30:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-10T18:29:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-wcus", + "name": "albertofori-notification-wcus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/spring-id-test": + {"principalId": "bbc27095-cfb5-4239-b4f1-b94dc4f76a33", "clientId": "b281689e-4907-4519-a49d-345edbc61f9e"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-06-13T17:35:52+00:00", + "endpoint": "https://mametcal-app-config.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": 604800, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "free"}, "systemData": {"createdBy": null, "createdByType": + null, "createdAt": "2019-06-13T17:35:52+00:00", "lastModifiedBy": "test@example.com", + "lastModifiedByType": "User", "lastModifiedAt": "2024-12-30T21:03:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/mametcal-app-config", + "name": "mametcal-app-config", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westcentralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-08-06T20:23:35+00:00", "endpoint": "https://secondsource.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-08-06T20:23:35+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-01-31T22:47:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/secondsource", + "name": "SecondSource", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "identity": {"type": "SystemAssigned", "userAssignedIdentities": + {}, "principalId": "72bee6eb-3e9f-41e8-a903-8d7d2b988b1c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-01-06T17:54:47+00:00", + "endpoint": "https://avgupta-appc-cus.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://keyvault-importexport.vault.azure.net/keys/TestCMK", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-01-06T17:54:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-08T13:30:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-cus", + "name": "avgupta-appc-cus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-02-12T21:35:04+00:00", "endpoint": "https://eventgridteststonexuxu1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-12T21:35:04+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-12T21:35:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/eventgridteststonexuxu1", + "name": "EventGridTestStoneXuxu1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centralus", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-05-31T18:07:37+00:00", "endpoint": "https://jimmyca-cus-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-05-31T18:07:37+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2022-10-13T16:53:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cus-appconfig", + "name": "jimmyca-cus-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-12T08:13:43+00:00", "endpoint": "https://0000-junbchen-pe-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/0000-junbchen-pe-test/privateEndpointConnections/0000-junbchen-pe", + "name": "0000-junbchen-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/0000-junbchen-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-12T08:13:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-12T08:34:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/0000-junbchen-pe-test", + "name": "0000-junbchen-pe-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-25T22:56:46+00:00", "endpoint": "https://albertofori-dataproxy-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Enabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-25T22:56:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T01:00:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-dataproxy-test", + "name": "albertofori-dataproxy-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-08-10T22:30:45+00:00", "endpoint": "https://albertofori-free-test1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-08-10T22:30:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-10T02:00:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-free-test1", + "name": "albertofori-free-test1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T18:47:12+00:00", "endpoint": "https://albertofori-sas-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T18:47:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-05T23:32:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sas-test", + "name": "albertofori-sas-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:26:11+00:00", "endpoint": "https://albertofori-sku-test-free.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-28T07:26:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T09:41:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free", + "name": "albertofori-sku-test-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:27:05+00:00", "endpoint": "https://albertofori-sku-test-free2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2023-11-28T07:27:05+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-11-28T07:27:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free2", + "name": "albertofori-sku-test-free2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-28T07:29:16+00:00", "endpoint": "https://albertofori-sku-test-free3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2023-11-28T07:29:16+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-11-28T07:29:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-sku-test-free3", + "name": "albertofori-sku-test-free3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-10T09:30:13+00:00", "endpoint": "https://albertofori-test-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-10T09:30:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-12T18:51:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-test", + "name": "albertofori-test-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-23T18:52:42+00:00", "endpoint": "https://albertoforitestanino.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-23T18:52:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-23T18:52:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforitestanino", + "name": "albertoforitestanino", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-01-06T23:44:03+00:00", "endpoint": "https://appconfig-spring-sample.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-01-06T23:44:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-01-06T23:44:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfig-spring-sample", + "name": "appconfig-spring-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "e656642d-deb0-4d1a-abc0-d8e85268cecf", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-19T02:05:10+00:00", + "endpoint": "https://appconfigaitzstf3sdnjs.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2332800, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": null, + "createdByType": null, "createdAt": "2024-11-19T02:05:10+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-05T19:12:11+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/appconfigaitzstf3sdnjs", + "name": "appconfigaitzstf3sdnjs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-07T19:32:28+00:00", "endpoint": "https://appconfigdemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-07T19:32:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-07T19:32:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigdemo", + "name": "AppConfigDemo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:47:53+00:00", "endpoint": "https://appconfigstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:47:53+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-01T09:39:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigstore", + "name": "AppConfigStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-07T19:09:14+00:00", "endpoint": "https://appconfigteststorexuxu1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-07T19:09:14+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-07T19:09:14+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/appconfigteststorexuxu1", + "name": "AppConfigTestStoreXuxu1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:47:27+00:00", "endpoint": "https://appconfigurationstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:47:27+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-01T09:43:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigurationstore", + "name": "AppConfigurationStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "765e8797-defc-4cbc-987a-72eb3dc71d5c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-01-04T00:25:57+00:00", + "endpoint": "https://avgupta-appc-wus.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-01-04T00:25:57+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-01-05T00:33:42+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus", + "name": "avgupta-appc-wus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T18:18:09+00:00", "endpoint": "https://avgupta-appc-wus-free.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2024-10-23T18:18:09+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-10-23T18:18:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus-free", + "name": "avgupta-appc-wus-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-05-18T20:18:01+00:00", "endpoint": "https://avgupta-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-05-18T20:18:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-01T17:37:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appconfig", + "name": "avgupta-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-10-03T16:36:18+00:00", "endpoint": "https://avgupta-ru-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-03T16:36:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-10-03T16:36:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-ru-test", + "name": "avgupta-ru-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2018-11-30T04:05:08+00:00", "endpoint": "https://configbuilderdemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2018-11-30T04:05:08+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-01T04:54:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigloadtestrg/providers/Microsoft.AppConfiguration/configurationStores/configbuilderdemo", + "name": "ConfigBuilderDemo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-09-23T17:46:44+00:00", "endpoint": "https://configprovider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 864000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2020-09-23T17:46:44+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-08-07T16:42:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-configprovider-rg/providers/Microsoft.AppConfiguration/configurationStores/configprovider", + "name": "configprovider", "tags": {"tagcli": "valcli", "tag-portal": "val-portal"}}, + {"type": "Microsoft.AppConfiguration/configurationStores", "location": "westus", + "properties": {"provisioningState": "Succeeded", "creationDate": "2021-10-05T20:53:37+00:00", + "endpoint": "https://configprovider-free.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": 604800, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "free"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2021-10-05T20:53:37+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-03-04T19:11:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-configprovider-rg/providers/Microsoft.AppConfiguration/configurationStores/configprovider-free", + "name": "configprovider-free", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2019-02-25T18:52:34+00:00", "endpoint": "https://configstoredemo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-02-25T18:52:34+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-21T23:58:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azcfg-demo/providers/Microsoft.AppConfiguration/configurationStores/configstoredemo", + "name": "ConfigStoreDemo", "tags": {"Owner": "Zhenlan"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-12-01T10:43:03+00:00", + "endpoint": "https://cwanjauteststore.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", "identityClientId": + "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": null, + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-12-01T10:43:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:35:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjauteststore", + "name": "cwanjauTestStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-17T18:06:57+00:00", "endpoint": "https://demos.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": [], "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-17T18:06:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-04T21:25:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/demos", + "name": "demos", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-01-08T21:18:22+00:00", "endpoint": "https://dotnetprovider-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-01-08T21:18:22+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-01-08T21:18:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/dotnetprovider-test", + "name": "dotnetprovider-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:43:44+00:00", "endpoint": "https://example.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:43:44+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-06T16:56:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/example", + "name": "example", "tags": {"222": "222", "test": "123"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-12T08:30:46+00:00", "endpoint": "https://garywang-create.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-12T08:30:46+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-02-12T08:30:46+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-create", + "name": "garywang-create", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2018-08-21T07:04:28+00:00", "endpoint": "https://garywang-demo-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2018-08-21T07:04:28+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2018-11-13T21:18:47+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-demo-store", + "name": "garywang-demo-store", "tags": {"123": "456", "789": "000"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "westus", "identity": + {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jimmyca-wus/providers/microsoft.managedidentity/userassignedidentities/jimmyca-mi-4": + {"principalId": "949c3968-a2e3-4bdc-b9fe-920f4d5a183f", "clientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, + "principalId": "763db0ea-df44-4d4c-ac02-c8e5f44b126a", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-02-20T19:44:43+00:00", + "endpoint": "https://jimmyca-wus-appconfig.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jimmyca-demo.vault.azure.net/keys/jimmyca-demo-key", + "identityClientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-02-20T19:44:43+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-03-27T22:06:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-wus-appconfig", + "name": "jimmyca-wus-appconfig", "tags": {"abc": "def", "ghi": "jkl"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "westus", "identity": + {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, + "principalId": "d92f5b75-4c8c-458f-a50a-7d2b587bec2b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-04-07T23:44:00+00:00", + "endpoint": "https://jiyu-createtest6.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + null}}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-07T23:44:00+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T23:14:41+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-createtest6", + "name": "jiyu-createtest6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-17T19:32:40+00:00", "endpoint": "https://jiyu-devsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-17T19:32:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-21T17:59:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-devsku", + "name": "jiyu-devsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jiyu/providers/microsoft.managedidentity/userassignedidentities/jiyu-useridentity-1": + {"principalId": "634a239c-d987-4892-83a4-5a4c987e3606", "clientId": "2e0d90a5-7909-4831-8508-31cbc111cb52"}}, + "principalId": "25fe3433-a7bd-4643-add3-d4f5ccfc68ea", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2019-11-07T18:45:10+00:00", + "endpoint": "https://jiyu-store.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "publicNetworkAccess": "Enabled", + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-11-07T18:45:10+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-04-21T21:53:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-store", + "name": "JIYU-stORE", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-01T18:44:56+00:00", "endpoint": "https://jiyu-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-01T18:44:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-01T18:44:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test", + "name": "jiyu-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-08T22:49:58+00:00", "endpoint": "https://jiyu-test-create.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-08T22:49:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-08T22:49:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test-create", + "name": "jiyu-test-create", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-03T00:48:41+00:00", "endpoint": "https://jiyu-test1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2019-10-03T00:48:41+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-08-06T17:01:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test1", + "name": "jiyu-test1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-14T17:14:39+00:00", "endpoint": "https://jiyu-testcreate.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-14T17:14:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-21T21:52:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-testcreate", + "name": "jiyu-testcreate", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "None", "userAssignedIdentities": + {}}, "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-14T19:22:00+00:00", + "endpoint": "https://jiyu-testresource.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://henlitestcmk.vault.azure.net/keys/henlicmk", "identityClientId": + "0147171d-f0b9-4c5a-ae56-c2bc638e073b"}}, "privateEndpointConnections": null, + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-14T19:22:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-14T19:22:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-testresource", + "name": "jiyu-testresource", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned", "principalId": + "da9f840f-a366-4525-ae77-7142a794cf49", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-03-16T23:19:49+00:00", + "endpoint": "https://jiyu-teststore.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-16T23:19:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-29T21:25:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore", + "name": "jiyu-teststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-05T19:32:08+00:00", "endpoint": "https://jiyu-wusstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-wusstore/privateEndpointConnections/jiyupetest_756dffb7-fc14-48e7-a7de-d4c8a36bb01d", + "name": "jiyupetest_756dffb7-fc14-48e7-a7de-d4c8a36bb01d", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyupetest"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Enabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-05T19:32:08+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-04-11T21:44:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-wusstore", + "name": "jiyu-wusstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-11-18T20:34:11+00:00", "endpoint": "https://jlinares-wus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-18T20:34:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-11-18T20:34:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-wus", + "name": "jlinares-wus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-10T07:33:47+00:00", "endpoint": "https://junbchen-rbac-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-10T07:33:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-10T07:33:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchen-rbac-test", + "name": "junbchen-rbac-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-02-10T11:56:31+00:00", "endpoint": "https://junbchenconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-02-10T11:56:31+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-03-20T06:09:56+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig", + "name": "junbchenConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.ManagedIdentity/userAssignedIdentities/junbchen-identity-cmk": + {"principalId": "e790947e-9f1d-4382-af0f-eec738f38956", "clientId": "43310a7e-10ee-4a8d-95d5-512587f292b9"}}, + "principalId": "8ad03e71-e705-4886-b115-6e91de3e349f", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-09-21T07:06:42+00:00", + "endpoint": "https://junbchenconfig-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-test/privateEndpointConnections/junbchen-my-pe", + "name": "junbchen-my-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/junbchen-my-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-21T07:06:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-08T02:57:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-test", + "name": "junbchenconfig-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-23T01:44:20+00:00", "endpoint": "https://notification-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-23T01:44:20+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2021-05-24T20:06:29+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/notification-test", + "name": "notification-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-12-01T23:02:40+00:00", "endpoint": "https://replicatest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-12-01T23:02:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T23:13:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/replicatest", + "name": "replicatest", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-25T18:46:09+00:00", "endpoint": "https://sample.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-25T18:46:09+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-25T18:46:09+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/sample", + "name": "sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-02-14T05:17:40+00:00", "endpoint": "https://scrum.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-02-14T05:17:40+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-02-14T05:17:40+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/scrum", + "name": "scrum", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-16T23:42:04+00:00", "endpoint": "https://sync-integration-source.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-16T23:42:04+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-16T23:42:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-source", + "name": "sync-integration-source", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-10-16T23:43:37+00:00", "endpoint": "https://sync-integration-target.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-10-16T23:43:37+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-10-16T23:43:37+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-target", + "name": "sync-integration-target", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-03-05T00:57:52+00:00", "endpoint": "https://teststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2021-03-05T00:57:52+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-05-10T06:06:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vendorteamtestrg/providers/Microsoft.AppConfiguration/configurationStores/teststore1", + "name": "TestStore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-10T18:34:03+00:00", "endpoint": "https://tolani-manifest-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-10T18:34:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-10T18:34:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-manifest-test", + "name": "tolani-manifest-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-23T20:30:55+00:00", "endpoint": "https://xuxu-dev-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-23T20:30:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-23T20:30:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-dev-test", + "name": "xuxu-dev-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T23:20:19+00:00", "endpoint": "https://xuxu-softdelete-2025-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T23:20:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-01T05:59:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-softdelete-2025-3", + "name": "xuxu-softdelete-2025-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-02-22T21:58:58+00:00", "endpoint": "https://xuxutest2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-02-22T21:58:58+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-09-01T00:01:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxutest2", + "name": "xuxutest2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-01-23T22:43:48+00:00", "endpoint": "https://xuxuteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-01-23T22:43:48+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-01-23T22:43:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuteststore", + "name": "xuxuteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T12:14:02+00:00", "endpoint": "https://202503071050aadstorelbub34eijpr7lode.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:14:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:14:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050aadstorelbub34eijpr7lode", + "name": "202503071050AADStorelbub34eijpr7lode", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:05+00:00", "endpoint": "https://202503071050aadstoretvbz6bjfgcrueuj7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050aadstoretvbz6bjfgcrueuj7", + "name": "202503071050AADStoretvbz6bjfgcrueuj7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050featurefiltertestz3tajzl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050featurefiltertestz3tajzl", + "name": "202503071050FeatureFilterTestz3tajzl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050featuretestbis7h3hf75vhu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050featuretestbis7h3hf75vhu", + "name": "202503071050FeatureTestbis7h3hf75vhu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050kvsetimporttestj7dxbos4t.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvsetimporttestj7dxbos4t", + "name": "202503071050KVSetImportTestj7dxbos4t", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050kvtestex2pahcgf6zf6ichhh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvtestex2pahcgf6zf6ichhh", + "name": "202503071050KVTestex2pahcgf6zf6ichhh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:43+00:00", "endpoint": "https://202503071050kvtestpwhanchjfarusoc6hx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050kvtestpwhanchjfarusoc6hx", + "name": "202503071050KVTestpwhanchjfarusoc6hx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:05+00:00", "endpoint": "https://202503071050source4jumespglx52uvwv73.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050source4jumespglx52uvwv73", + "name": "202503071050Source4jumespglx52uvwv73", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-07T07:51:04+00:00", "endpoint": "https://202503071050strictimporttestiabfkuyi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T07:51:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T07:51:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050strictimporttestiabfkuyi", + "name": "202503071050StrictImportTestiabfkuyi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-18T18:36:58+00:00", "endpoint": "https://aacpreviewcddklrzrcr43y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-18T18:36:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-25T17:47:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev3/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewcddklrzrcr43y", + "name": "aacpreviewcddklrzrcr43y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-17T22:34:27+00:00", "endpoint": "https://aacpreviewglh3yhyjvuqx4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-17T22:34:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-17T23:24:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewglh3yhyjvuqx4", + "name": "aacpreviewglh3yhyjvuqx4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-29T18:27:34+00:00", "endpoint": "https://aacpreviewnbuq7mn7uftpu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T18:27:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-30T19:33:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-ai-chat-test/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewnbuq7mn7uftpu", + "name": "aacpreviewnbuq7mn7uftpu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-17T23:42:05+00:00", "endpoint": "https://aacpreviewog5i35jytnwqe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-17T23:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-17T23:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-mametcal-python-dev2/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewog5i35jytnwqe", + "name": "aacpreviewog5i35jytnwqe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-22T18:12:58+00:00", "endpoint": "https://aacpreviewpem2i2yi7hhce.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-22T18:12:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-22T18:12:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-ross-azd-temp/providers/Microsoft.AppConfiguration/configurationStores/aacpreviewpem2i2yi7hhce", + "name": "aacpreviewpem2i2yi7hhce", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d2fc891a-1990-40bd-87e5-89583d8603f0", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-03-21T04:28:43+00:00", + "endpoint": "https://aactest4156.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-03-21T04:28:43+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-06-25T21:39:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_test2/providers/Microsoft.AppConfiguration/configurationStores/aactest4156", + "name": "AACtest4156", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:48:19+00:00", "endpoint": "https://aadstore2fdc6wfxygy2nnb3gw6ckd2sermi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:48:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:48:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2fdc6wfxygy2nnb3gw6ckd2sermi", + "name": "AADStore2fdc6wfxygy2nnb3gw6ckd2sermi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://aadstore2j23nxok6pn5otve.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2j23nxok6pn5otve", + "name": "AADStore2j23nxok6pn5otve", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:25:20+00:00", "endpoint": "https://aadstore2kisbgqpo525kjduvfqihqnsx4nt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:25:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:25:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore2kisbgqpo525kjduvfqihqnsx4nt", + "name": "AADStore2kisbgqpo525kjduvfqihqnsx4nt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:29+00:00", "endpoint": "https://aadstore3dce6d55zqgbwack.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore3dce6d55zqgbwack", + "name": "AADStore3dce6d55zqgbwack", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:28+00:00", "endpoint": "https://aadstore6nr3kgh7g33qxwbb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstore6nr3kgh7g33qxwbb", + "name": "AADStore6nr3kgh7g33qxwbb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://aadstoreaantdclm5gpqei2hhdf6cva3sljt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreaantdclm5gpqei2hhdf6cva3sljt", + "name": "AADStoreaantdclm5gpqei2hhdf6cva3sljt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T21:46:30+00:00", "endpoint": "https://aadstorec4ol3cqh5zpjr6h26tze7vmjpw3z.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "b82302a5-ce22-429d-b5af-a8969e61ef42", "createdByType": + "Application", "createdAt": "2025-03-18T21:46:30+00:00", "lastModifiedBy": + "b82302a5-ce22-429d-b5af-a8969e61ef42", "lastModifiedByType": "Application", + "lastModifiedAt": "2025-03-18T21:46:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/aadstorec4ol3cqh5zpjr6h26tze7vmjpw3z", + "name": "AADStorec4ol3cqh5zpjr6h26tze7vmjpw3z", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://aadstored4eq4jf2dxb7w6q2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstored4eq4jf2dxb7w6q2", + "name": "AADStored4eq4jf2dxb7w6q2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:54:21+00:00", "endpoint": "https://aadstoredngl3p3poqiv3afvsecphzi7awkv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:54:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:54:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoredngl3p3poqiv3afvsecphzi7awkv", + "name": "AADStoredngl3p3poqiv3afvsecphzi7awkv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://aadstoreehsptlkv33yb6ypf4u6ro2zjzoma.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreehsptlkv33yb6ypf4u6ro2zjzoma", + "name": "AADStoreehsptlkv33yb6ypf4u6ro2zjzoma", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://aadstoreemoarcatx4ig55bf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreemoarcatx4ig55bf", + "name": "AADStoreemoarcatx4ig55bf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:01:10+00:00", "endpoint": "https://aadstorefa47dzf4yc7jajleqyj3fsy5z2ne.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:01:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:01:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefa47dzf4yc7jajleqyj3fsy5z2ne", + "name": "AADStorefa47dzf4yc7jajleqyj3fsy5z2ne", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:07:12+00:00", "endpoint": "https://aadstorefekzsb2x5ovlq42cl4fjprdjcqck.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:07:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:07:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefekzsb2x5ovlq42cl4fjprdjcqck", + "name": "AADStorefekzsb2x5ovlq42cl4fjprdjcqck", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:48:19+00:00", "endpoint": "https://aadstorefj4psmfliidhcij2l53aht4reart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:48:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:48:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefj4psmfliidhcij2l53aht4reart", + "name": "AADStorefj4psmfliidhcij2l53aht4reart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:00+00:00", "endpoint": "https://aadstorefj5yfl63sm2uy46h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorefj5yfl63sm2uy46h", + "name": "AADStorefj5yfl63sm2uy46h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T18:39:35+00:00", "endpoint": "https://aadstorehztciysy7xk4ewqzycdsq4incxbl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T18:39:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T18:39:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorehztciysy7xk4ewqzycdsq4incxbl", + "name": "AADStorehztciysy7xk4ewqzycdsq4incxbl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:30:23+00:00", "endpoint": "https://aadstorej6ldt2p4jl4arinnyk6m56v7yxob.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:30:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:30:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorej6ldt2p4jl4arinnyk6m56v7yxob", + "name": "AADStorej6ldt2p4jl4arinnyk6m56v7yxob", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://aadstorelyj2p6zwhasozckb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorelyj2p6zwhasozckb", + "name": "AADStorelyj2p6zwhasozckb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:09+00:00", "endpoint": "https://aadstoremaufp2otrctetauz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoremaufp2otrctetauz", + "name": "AADStoremaufp2otrctetauz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:53:43+00:00", "endpoint": "https://aadstoremqvpy6y6ngbns2zenvqysrzsl3ul.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:53:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:53:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoremqvpy6y6ngbns2zenvqysrzsl3ul", + "name": "AADStoremqvpy6y6ngbns2zenvqysrzsl3ul", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T21:34:01+00:00", "endpoint": "https://aadstoreoi34pez3z4quweid45aemfftd6q5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "0c2e9572-c9a5-4312-87ca-e25e62ce1775", "createdByType": + "Application", "createdAt": "2025-03-18T21:34:01+00:00", "lastModifiedBy": + "0c2e9572-c9a5-4312-87ca-e25e62ce1775", "lastModifiedByType": "Application", + "lastModifiedAt": "2025-03-18T21:34:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/aadstoreoi34pez3z4quweid45aemfftd6q5", + "name": "AADStoreoi34pez3z4quweid45aemfftd6q5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:21:34+00:00", "endpoint": "https://aadstoreptvgrkgrh5qdndt42qsprw5rm6ly.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:21:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:21:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreptvgrkgrh5qdndt42qsprw5rm6ly", + "name": "AADStoreptvgrkgrh5qdndt42qsprw5rm6ly", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:33:36+00:00", "endpoint": "https://aadstorer6gudmc32peoau6hb3bf5vvyj3q2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:33:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:33:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorer6gudmc32peoau6hb3bf5vvyj3q2", + "name": "AADStorer6gudmc32peoau6hb3bf5vvyj3q2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:29:39+00:00", "endpoint": "https://aadstoresadnweyx5hskkifsx7tfsv4ptwqe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:29:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:29:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoresadnweyx5hskkifsx7tfsv4ptwqe", + "name": "AADStoresadnweyx5hskkifsx7tfsv4ptwqe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T18:46:41+00:00", "endpoint": "https://aadstorestvj77kkmdknc2sv7xibljl7433p.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T18:46:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T18:46:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorestvj77kkmdknc2sv7xibljl7433p", + "name": "AADStorestvj77kkmdknc2sv7xibljl7433p", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://aadstoreu4qbgzyfxdmy6lpd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreu4qbgzyfxdmy6lpd", + "name": "AADStoreu4qbgzyfxdmy6lpd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:16+00:00", "endpoint": "https://aadstoreuje4evizirs5a6342bspybsecsib.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreuje4evizirs5a6342bspybsecsib", + "name": "AADStoreuje4evizirs5a6342bspybsecsib", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T10:11:12+00:00", "endpoint": "https://aadstorevgd2tlbh6eykb7dx2loyzn4xajr3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T10:11:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T10:11:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorevgd2tlbh6eykb7dx2loyzn4xajr3", + "name": "AADStorevgd2tlbh6eykb7dx2loyzn4xajr3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:33:12+00:00", "endpoint": "https://aadstorevqztvqfq25dqbpjndilalipnl6tw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:33:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:33:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorevqztvqfq25dqbpjndilalipnl6tw", + "name": "AADStorevqztvqfq25dqbpjndilalipnl6tw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:51:34+00:00", "endpoint": "https://aadstorexqwgsfnuryxk6a52ashu2z6bst3d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:51:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:51:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorexqwgsfnuryxk6a52ashu2z6bst3d", + "name": "AADStorexqwgsfnuryxk6a52ashu2z6bst3d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://aadstorexxspwhf6yblpkshfi46zb4h76jmw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorexxspwhf6yblpkshfi46zb4h76jmw", + "name": "AADStorexxspwhf6yblpkshfi46zb4h76jmw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://aadstoreyfhynglzfhp6ouko.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstoreyfhynglzfhp6ouko", + "name": "AADStoreyfhynglzfhp6ouko", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T09:58:27+00:00", "endpoint": "https://aadstorez47z44qmkfeoffaj7p6jyuljr5du.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T09:58:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T09:58:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/aadstorez47z44qmkfeoffaj7p6jyuljr5du", + "name": "AADStorez47z44qmkfeoffaj7p6jyuljr5du", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-27T11:12:24+00:00", "endpoint": "https://aadtestbphpp6jw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-27T11:12:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-27T11:12:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaqtmt4okxwxkkeqxxixbg26vnobwquumjo2cgvejdroji56rwqdvwasvnebr3xya4/providers/Microsoft.AppConfiguration/configurationStores/aadtestbphpp6jw", + "name": "AadTestbphpp6jw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:52:15+00:00", "endpoint": "https://aadtestfz2vwxiz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:52:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:52:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf32tkfpn6fob3yu73dinjh76shlmvspc3vvnde72phco2oohx5x5zypldebnx5ra2/providers/Microsoft.AppConfiguration/configurationStores/aadtestfz2vwxiz", + "name": "AadTestfz2vwxiz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:42+00:00", "endpoint": "https://aadtestyu6jk3pc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqos4tjbhhejcb656qv6thmesokhiwxsl2lxiwepvzuphcjifnzbefcz2naw2t3dni/providers/Microsoft.AppConfiguration/configurationStores/aadtestyu6jk3pc", + "name": "AadTestyu6jk3pc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:56:22+00:00", "endpoint": "https://aadtestzyc5ivjm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:56:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:56:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjtmgpqlhvdaxivlgfit35z6eugeihochof5nogetvgk7qmljxwhy6mwuks46fy2ev/providers/Microsoft.AppConfiguration/configurationStores/aadtestzyc5ivjm", + "name": "AadTestzyc5ivjm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-29T16:29:13+00:00", "endpoint": "https://ai-chatapp-demo-mametcal.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T16:29:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-29T17:28:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ai-chatapp-demo-mametcal/providers/Microsoft.AppConfiguration/configurationStores/ai-chatapp-demo-mametcal", + "name": "AI-ChatApp-Demo-mametcal", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "dfb4ad91-368f-4de1-8101-c7919fd25c5e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-01-23T23:21:07+00:00", + "endpoint": "https://albertofori-ff-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-23T23:21:07+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-02T17:52:47+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-ff-test", + "name": "albertofori-ff-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-17T23:38:28+00:00", "endpoint": "https://albertofori-import-export-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-06-17T23:38:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-26T17:22:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-import-export-test", + "name": "albertofori-import-export-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-26T13:03:30+00:00", "endpoint": "https://albertofori-python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-26T13:03:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-27T17:06:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-python-provider", + "name": "albertofori-python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-12T21:52:32+00:00", "endpoint": "https://albertofori-snapshot-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-12T21:52:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-21T19:32:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-snapshot-demo", + "name": "albertofori-snapshot-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/albertofori-managed-id": + {"principalId": "6a8e5046-50d3-480d-9ca3-94f61a51f8e3", "clientId": "b82302a5-ce22-429d-b5af-a8969e61ef42"}}, + "principalId": "c27e254a-eed2-4326-a0c8-3082898bac95", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-01T17:00:28+00:00", + "endpoint": "https://albertofori-test-config.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Enabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-04-01T17:00:28+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-10-30T18:14:28+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-config", + "name": "albertofori-test-config", "tags": {"this": "is a new tag"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastus", "identity": + {"type": "SystemAssigned", "principalId": "627b96a5-156b-4334-b427-a97f73c44247", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2022-08-11T17:30:03+00:00", "endpoint": "https://albertofori-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 259200, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T17:30:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-11T21:19:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-test-store", + "name": "albertofori-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c05dd707-b8e5-4147-84e3-b09e2bf280ed", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-19T03:41:20+00:00", + "endpoint": "https://appconfig-zhiyuanliang.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-02-19T03:41:20+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-30T12:24:20+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyuanliang-dev/providers/Microsoft.AppConfiguration/configurationStores/appconfig-zhiyuanliang", + "name": "appconfig-zhiyuanliang", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-18T22:27:36+00:00", "endpoint": "https://appconfigkube.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-18T22:27:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-18T22:27:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mvp_demo/providers/Microsoft.AppConfiguration/configurationStores/appconfigkube", + "name": "appConfigKube", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-09T08:25:44+00:00", + "endpoint": "https://appconfigurationstore1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", "identityClientId": + "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": null, + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 86400, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-09T08:25:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-25T07:59:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/appconfigurationstore1", + "name": "appconfigurationstore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-10T15:50:07+00:00", "endpoint": "https://appconfigw4swdcadfzqb6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-10T15:50:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T17:04:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/appconfigw4swdcadfzqb6", + "name": "appconfigw4swdcadfzqb6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-10-16T18:36:25+00:00", "endpoint": "https://avgupta-appc-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-16T18:36:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-23T19:57:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus", + "name": "avgupta-appc-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-06T17:34:04+00:00", "endpoint": "https://avgupta-appc-eus-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-06T17:34:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-06T17:34:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus-test2", + "name": "avgupta-appc-eus-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:57:29+00:00", "endpoint": "https://bothschematest2ajsnm4m4m.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:57:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:57:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematest2ajsnm4m4m", + "name": "BothSchemaTest2ajsnm4m4m", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T20:04:20+00:00", "endpoint": "https://bothschematestazrlxgv5apnvcwi5dgvsoj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T20:04:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T20:04:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestazrlxgv5apnvcwi5dgvsoj", + "name": "BothSchemaTestazrlxgv5apnvcwi5dgvsoj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:51+00:00", "endpoint": "https://bothschematestdxcevakc6u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestdxcevakc6u", + "name": "BothSchemaTestdxcevakc6u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:07:29+00:00", "endpoint": "https://bothschematestfxm4zemppk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:07:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:07:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/bothschematestfxm4zemppk", + "name": "BothSchemaTestfxm4zemppk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-29T00:38:15+00:00", "endpoint": "https://cdntestinghtkswxoxu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2025-05-29T00:38:15+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2025-05-29T00:42:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/cdntestinghtkswxoxu", + "name": "cdntestinghtkswxoxu", "tags": {"demo": "cdn-cache-busting"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastus", "properties": + {"provisioningState": "Succeeded", "creationDate": "2024-12-06T08:13:55+00:00", + "endpoint": "https://chenshi-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-12-06T08:13:55+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-12-06T08:13:55+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chenshi-empty/providers/Microsoft.AppConfiguration/configurationStores/chenshi-test", + "name": "chenshi-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-31T04:09:21+00:00", "endpoint": "https://credentialtestghlwa5dymj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-31T04:09:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-31T04:09:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmduhbiqbiiegesiuewzdwlvnh6wrdgdsbti6tgxzjzeittnnlqwu4or5gzhqmjzcp/providers/Microsoft.AppConfiguration/configurationStores/credentialtestghlwa5dymj", + "name": "CredentialTestghlwa5dymj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://credentialtestrvdev7icfu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkhjgepteg6uxberos6x5tz6bbxjgjliagmxzgu2iehb5me5yqmle6shfkr43tgvue/providers/Microsoft.AppConfiguration/configurationStores/credentialtestrvdev7icfu", + "name": "CredentialTestrvdev7icfu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:00+00:00", "endpoint": "https://credentialtestvdwi2cve5c.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/credentialtestvdwi2cve5c", + "name": "CredentialTestvdwi2cve5c", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-08T10:32:41+00:00", "endpoint": "https://cwanjau-appconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-01-08T10:32:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-20T17:42:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-appconfig", + "name": "cwanjau-appconfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T16:42:42+00:00", "endpoint": "https://cwanjau-data.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T16:42:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T16:42:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-data", + "name": "cwanjau-data", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-24T15:05:46+00:00", "endpoint": "https://cwanjauconfig.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://cwanjau-vault.vault.azure.net/keys/key1", + "identityClientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-24T15:05:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-06T08:22:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjauconfig", + "name": "cwanjauConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-05T17:31:19+00:00", "endpoint": "https://cwanjautestpremiumsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-05T17:31:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-18T09:00:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjautestpremiumsku", + "name": "cwanjautestpremiumsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:58+00:00", "endpoint": "https://destination624bxoocjr2fi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwyttwmni2xmbsaxrtp64sja6rdh2ocxcprrc5pwdogqijazx7f4vhljo5qfanoryn/providers/Microsoft.AppConfiguration/configurationStores/destination624bxoocjr2fi", + "name": "Destination624bxoocjr2fi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:21+00:00", "endpoint": "https://destinationaoj4n5rlqmypa.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:50:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:50:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationaoj4n5rlqmypa", + "name": "Destinationaoj4n5rlqmypa", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:53:04+00:00", "endpoint": "https://destinationaq6eqb6bwrydgaariika6z53n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:53:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:53:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationaq6eqb6bwrydgaariika6z53n", + "name": "Destinationaq6eqb6bwrydgaariika6z53n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:31+00:00", "endpoint": "https://destinationcplr7jafu2ya5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationcplr7jafu2ya5", + "name": "Destinationcplr7jafu2ya5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:34:19+00:00", "endpoint": "https://destinationibqoopqxlj6k6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:34:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:34:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationibqoopqxlj6k6", + "name": "Destinationibqoopqxlj6k6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:56+00:00", "endpoint": "https://destinationlxi67pwgjj57oguvmzwgkt2vf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationlxi67pwgjj57oguvmzwgkt2vf", + "name": "Destinationlxi67pwgjj57oguvmzwgkt2vf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:22+00:00", "endpoint": "https://destinationnqga6gaurejxxtvybkxnccztp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationnqga6gaurejxxtvybkxnccztp", + "name": "Destinationnqga6gaurejxxtvybkxnccztp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:52:14+00:00", "endpoint": "https://destinationoj2i2wxwar47i.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationoj2i2wxwar47i", + "name": "Destinationoj2i2wxwar47i", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:39:38+00:00", "endpoint": "https://destinationrzqf65ztf6tdr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:39:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:39:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationrzqf65ztf6tdr", + "name": "Destinationrzqf65ztf6tdr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:07:04+00:00", "endpoint": "https://destinationvzuqxfj74tquf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:07:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:07:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguznozpjynfgaebftsnnrdc52h2scgoorpr6unkhktfxrcwsulo6qvsxb6b6j2jkfn/providers/Microsoft.AppConfiguration/configurationStores/destinationvzuqxfj74tquf", + "name": "Destinationvzuqxfj74tquf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:00:21+00:00", "endpoint": "https://destinationwjno7ctvxyjrl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:00:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:00:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationwjno7ctvxyjrl", + "name": "Destinationwjno7ctvxyjrl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:02+00:00", "endpoint": "https://destinationy75zwpupmogkjvsohc7ou4yxv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationy75zwpupmogkjvsohc7ou4yxv", + "name": "Destinationy75zwpupmogkjvsohc7ou4yxv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:37:44+00:00", "endpoint": "https://disablelocalauthfju7nz7v.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:37:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:38:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthfju7nz7v", + "name": "DisableLocalAuthfju7nz7v", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:58:33+00:00", "endpoint": "https://disablelocalauthhs4noupq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:58:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:59:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthhs4noupq", + "name": "DisableLocalAuthhs4noupq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:04+00:00", "endpoint": "https://disablelocalauthqaeotexuyh5meeg5l7xm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthqaeotexuyh5meeg5l7xm", + "name": "DisableLocalAuthqaeotexuyh5meeg5l7xm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:48:35+00:00", "endpoint": "https://disablelocalauthsejaovxn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:48:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:49:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/disablelocalauthsejaovxn", + "name": "DisableLocalAuthsejaovxn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:39+00:00", "endpoint": "https://featurefiltertest4oe7rjo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest4oe7rjo", + "name": "FeatureFilterTest4oe7rjo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:41+00:00", "endpoint": "https://featurefiltertest4qffyn3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq3rajrlh5wrogzgbxi7z4mjxxcjgiie4yagnbmwn6wrksy52etjishk2wfygh6qc5/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest4qffyn3", + "name": "FeatureFilterTest4qffyn3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:49+00:00", "endpoint": "https://featurefiltertest5a5yxm3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertest5a5yxm3", + "name": "FeatureFilterTest5a5yxm3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:06+00:00", "endpoint": "https://featurefiltertestak76alz.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestak76alz", + "name": "FeatureFilterTestak76alz", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:59+00:00", "endpoint": "https://featurefiltertestczvejyt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestczvejyt", + "name": "FeatureFilterTestczvejyt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:31+00:00", "endpoint": "https://featurefiltertestntvamlv3qsxhrqghqxt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestntvamlv3qsxhrqghqxt", + "name": "FeatureFilterTestntvamlv3qsxhrqghqxt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:08:03+00:00", "endpoint": "https://haiyiwen-weu-0716.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:08:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:08:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716", + "name": "haiyiwen-weu-0716", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:23:12+00:00", "endpoint": "https://haiyiwen-weu-0716-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:23:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:23:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-1", + "name": "haiyiwen-weu-0716-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:24:06+00:00", "endpoint": "https://haiyiwen-weu-0716-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:24:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:24:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-2", + "name": "haiyiwen-weu-0716-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:29:54+00:00", "endpoint": "https://haiyiwen-weu-0716-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:29:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:29:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-3", + "name": "haiyiwen-weu-0716-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:30:11+00:00", "endpoint": "https://haiyiwen-weu-0716-4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:30:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:30:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-4", + "name": "haiyiwen-weu-0716-4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:30:27+00:00", "endpoint": "https://haiyiwen-weu-0716-5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:30:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:30:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-5", + "name": "haiyiwen-weu-0716-5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:39:47+00:00", "endpoint": "https://haiyiwen-weu-0716-6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:39:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:39:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-weu-0716-6", + "name": "haiyiwen-weu-0716-6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-11T17:46:54+00:00", "endpoint": "https://jlinares-weu-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-11T17:46:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-11T17:46:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-weu-test", + "name": "jlinares-weu-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-11-20T20:44:09+00:00", "endpoint": "https://parameters.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-20T20:44:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-09T21:27:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/parameters", + "name": "parameters", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southeastasia", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-23T08:11:48+00:00", "endpoint": "https://appconfig-dova-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-23T08:11:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-23T08:11:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfig-dova/providers/Microsoft.AppConfiguration/configurationStores/appconfig-dova-store", + "name": "appconfig-dova-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-10-08T16:40:07+00:00", "endpoint": "https://australia-east-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-08T16:40:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-08T16:40:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/australia-east-test", + "name": "australia-east-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-10-21T20:31:31+00:00", "endpoint": "https://tolani-aue-aad-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-21T20:31:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-21T21:13:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-aue-aad-test", + "name": "tolani-aue-aad-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-05T20:33:25+00:00", "endpoint": "https://tolani-aue-test-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T20:33:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-05T20:33:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-aue-test-2", + "name": "tolani-aue-test-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "identity": {"type": "SystemAssigned", "principalId": + "5b4d94b7-a951-4698-805a-cfc91ee54f15", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-08-06T12:26:08+00:00", + "endpoint": "https://freestoreee.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-08-06T12:26:08+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-08-07T07:30:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestoreee", + "name": "freeStoreee", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-test": + {"principalId": "1a010275-1a70-4915-a017-b778836ea3b7", "clientId": "b60a60f9-e266-447b-a168-15af052f49a1"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-01-16T19:22:44+00:00", + "endpoint": "https://jiyu-neu.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Pass-through", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-16T19:22:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-08T00:09:31+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-neu", + "name": "jiyu-neu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "northeurope", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-18T16:15:26+00:00", "endpoint": "https://testupgradefree.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T16:15:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-20T17:38:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testupgradefree", + "name": "testupgradefree", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uksouth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-15T08:59:14+00:00", "endpoint": "https://cwanjau-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-15T08:59:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T07:24:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/cwanjau-pe", + "name": "cwanjau-PE", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uksouth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-22T22:32:16+00:00", "endpoint": "https://tolani-prod-uks-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-22T22:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-22T22:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-uks-1", + "name": "tolani-prod-uks-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/albertofori-managed-id": + {"principalId": "6a8e5046-50d3-480d-9ca3-94f61a51f8e3", "clientId": "b82302a5-ce22-429d-b5af-a8969e61ef42"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-01T22:41:59+00:00", + "endpoint": "https://albertofori-diff-import-export.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-01T22:41:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-11T21:32:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-diff-import-export", + "name": "albertofori-diff-import-export", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-20T20:26:27+00:00", "endpoint": "https://albertoforiteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-06-20T20:26:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-09T01:23:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforiteststore", + "name": "albertoforiteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T22:55:24+00:00", "endpoint": "https://avgupta-appc-eus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T22:55:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-07T23:58:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus2", + "name": "avgupta-appc-eus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-21T16:22:23+00:00", "endpoint": "https://haiyiwen-aiconfig-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-21T16:22:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-04T04:24:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-aiconfig-demo", + "name": "haiyiwen-aiconfig-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-06-05T18:10:41+00:00", + "endpoint": "https://haiyiwen-eus2-0605.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-05T18:10:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T20:57:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2-0605", + "name": "haiyiwen-eus2-0605", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-05T18:25:54+00:00", "endpoint": "https://haiyiwen-eus2-0605-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-05T18:25:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-05T18:25:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2-0605-1", + "name": "haiyiwen-eus2-0605-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-06T22:13:49+00:00", "endpoint": "https://jiyu-eus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-06T22:13:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-06T22:19:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus2", + "name": "jiyu-eus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-06T18:34:38+00:00", "endpoint": "https://portal-test-eu2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-06T18:34:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T17:29:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-eu2", + "name": "portal-test-eu2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-17T20:42:26+00:00", "endpoint": "https://portal-test-eu2-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-17T20:42:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-18T00:52:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-eu2-2", + "name": "portal-test-eu2-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-09T08:19:20+00:00", "endpoint": "https://test-experimentation.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-09T08:19:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-09T08:24:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/test-experimentation", + "name": "test-experimentation", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-15T17:26:16+00:00", "endpoint": "https://appconfig-mfpyttqk5gws.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-15T17:26:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-15T17:26:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfig-mfpyttqk5gws", + "name": "appconfig-mfpyttqk5gws", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "c45e9ed2-6e72-460a-82f9-6306b65fa956", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-03-02T02:42:51+00:00", + "endpoint": "https://appconfigtwo.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-03-02T02:42:51+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-03-03T20:14:50+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/appconfigtwo", + "name": "AppConfigTwo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T17:01:30+00:00", "endpoint": "https://appconfigwmsp7gt2w2iak.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-10-23T17:01:30+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-10-23T17:01:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/appconfigwmsp7gt2w2iak", + "name": "appconfigwmsp7gt2w2iak", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-10T02:44:51+00:00", "endpoint": "https://asdfasdfad.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-10T02:44:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-10T02:44:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/asdfasdfad", + "name": "asdfasdfad", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-25T17:28:57+00:00", "endpoint": "https://avgupta-appc-wus2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-25T17:28:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-13T17:23:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus2", + "name": "avgupta-appc-wus2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "4090f296-4b68-49d2-9250-9bcff07d821b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-11-22T19:29:17+00:00", + "endpoint": "https://avgupta-pe-appc.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-22T19:29:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-12-01T00:41:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc", + "name": "avgupta-pe-appc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T09:10:56+00:00", "endpoint": "https://configmapimporttest2uedl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T09:10:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T09:10:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest2uedl", + "name": "ConfigMapImportTest2uedl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T09:04:11+00:00", "endpoint": "https://configmapimporttest3nenl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T09:04:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T09:04:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest3nenl", + "name": "ConfigMapImportTest3nenl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-15T03:11:28+00:00", "endpoint": "https://configmapimporttest5eotn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-15T03:11:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-15T03:11:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest5eotn", + "name": "ConfigMapImportTest000002", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T08:22:05+00:00", "endpoint": "https://configmapimporttest7ugov.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T08:22:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T08:22:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttest7ugov", + "name": "ConfigMapImportTest7ugov", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T14:47:55+00:00", "endpoint": "https://configmapimporttesteqacu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T14:47:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T14:47:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttesteqacu", + "name": "ConfigMapImportTesteqacu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T14:46:09+00:00", "endpoint": "https://configmapimporttestezsgo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T14:46:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T14:46:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestezsgo", + "name": "ConfigMapImportTestezsgo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-15T02:42:27+00:00", "endpoint": "https://configmapimporttestghpw2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-15T02:42:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-15T02:42:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestghpw2", + "name": "ConfigMapImportTestghpw2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T15:36:34+00:00", "endpoint": "https://configmapimporttestifrht.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T15:36:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T15:36:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestifrht", + "name": "ConfigMapImportTestifrht", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T07:13:43+00:00", "endpoint": "https://configmapimporttestiy6dj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T07:13:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T07:13:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestiy6dj", + "name": "ConfigMapImportTestiy6dj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T15:05:24+00:00", "endpoint": "https://configmapimporttestjiwd3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T15:05:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T15:05:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestjiwd3", + "name": "ConfigMapImportTestjiwd3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T09:45:34+00:00", "endpoint": "https://configmapimporttestjxp4j.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T09:45:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T09:45:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestjxp4j", + "name": "ConfigMapImportTestjxp4j", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-22T08:06:28+00:00", "endpoint": "https://configmapimporttests45es.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-22T08:06:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-22T08:06:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttests45es", + "name": "ConfigMapImportTests45es", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T07:38:51+00:00", "endpoint": "https://configmapimporttestubqzy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T07:38:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T07:38:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/configmapimporttestubqzy", + "name": "ConfigMapImportTestubqzy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-06-30T00:09:38+00:00", "endpoint": "https://demombappconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-06-30T00:09:38+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-07-18T22:42:16+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/demombappconfig", + "name": "DemoMBAppConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-27T19:10:15+00:00", "endpoint": "https://fake-endpoint.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-27T19:10:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-27T19:11:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/fake-endpoint", + "name": "fake-endpoint", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-13T17:36:36+00:00", "endpoint": "https://highnumberffstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-13T17:36:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-13T17:36:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/highnumberffstore", + "name": "HighNumberFFStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-13T15:59:39+00:00", "endpoint": "https://importtestspring.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-13T15:59:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-13T15:59:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/importtestspring", + "name": "importtestspring", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-21T23:27:57+00:00", "endpoint": "https://java-export-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-21T23:27:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-21T23:27:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/java-export-test", + "name": "java-export-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-07-01T18:03:45+00:00", "endpoint": "https://jlinares-test-slw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-01T18:03:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-07-01T18:03:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-slw", + "name": "jlinares-test-slw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-04-07T23:28:48+00:00", "endpoint": "https://jlinares-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-07T23:28:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-07T23:28:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-store", + "name": "jlinares-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-25T17:10:07+00:00", "endpoint": "https://largekeyvaultstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-25T17:10:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-25T17:10:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/largekeyvaultstore", + "name": "LargeKeyVaultStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-22T18:40:42+00:00", "endpoint": "https://mb-test-template.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-22T18:40:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-22T18:40:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/mb-test-template", + "name": "mb-test-template", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-03-19T19:54:12+00:00", "endpoint": "https://nofeatureflagstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2020-03-19T19:54:12+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2020-03-19T19:54:12+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/nofeatureflagstore", + "name": "NoFeatureFlagStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-03-22T19:32:34+00:00", "endpoint": "https://noreplicatest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-22T19:32:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-22T19:32:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/noreplicatest", + "name": "noReplicaTest", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-26T22:52:06+00:00", "endpoint": "https://python-ai-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-26T22:52:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-26T22:52:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-azureaidemomametcal/providers/Microsoft.AppConfiguration/configurationStores/python-ai-test", + "name": "python-ai-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-22T17:53:31+00:00", "endpoint": "https://python-chatapp-example.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-22T17:53:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-25T23:18:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-chatapp-example", + "name": "Python-ChatApp-Example", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-13T18:28:47+00:00", "endpoint": "https://python-multi-source-ff.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-13T18:28:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-27T18:33:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-multi-source-ff", + "name": "python-multi-source-ff", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-01T16:51:09+00:00", "endpoint": "https://python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-01T16:51:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-25T17:52:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider", + "name": "python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-09T17:53:50+00:00", "endpoint": "https://python-provider-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-09T17:53:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-09T17:53:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider-demo", + "name": "python-provider-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-26T18:00:59+00:00", "endpoint": "https://python-provider-flask-sample.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-26T18:00:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-18T22:38:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python/providers/Microsoft.AppConfiguration/configurationStores/python-provider-flask-sample", + "name": "python-provider-flask-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-27T19:37:52+00:00", "endpoint": "https://python-provider-tests.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-27T19:37:52+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T21:30:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/python-provider-tests", + "name": "python-provider-tests", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-06-12T15:05:18+00:00", "endpoint": "https://recoverstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-06-12T15:05:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-12T15:05:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/recoverstore", + "name": "recoverStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-06T18:58:43+00:00", "endpoint": "https://screenshotdocstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-06T18:58:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-16T23:29:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/screenshotdocstore", + "name": "screenshotdocstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-12-07T18:13:20+00:00", "endpoint": "https://spring-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-12-07T18:13:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-12-07T18:13:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-demo", + "name": "Spring-Demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-09-01T17:01:47+00:00", "endpoint": "https://spring-df-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-09-01T17:01:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-09-01T17:01:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-df-demo", + "name": "spring-df-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-30T19:16:42+00:00", "endpoint": "https://spring-quickstart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-30T19:16:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-30T19:16:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-quickstart", + "name": "spring-quickstart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-01-17T10:27:02+00:00", "endpoint": "https://spring-sync-token.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-01-17T10:27:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-01-17T10:27:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-sync-token", + "name": "spring-sync-token", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-19T17:09:21+00:00", "endpoint": "https://springdocchecks.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-19T17:09:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-19T17:09:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/springdocchecks", + "name": "SpringDocChecks", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-20T05:54:32+00:00", "endpoint": "https://t-vvidyasaga-ac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-20T05:54:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-20T05:54:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac", + "name": "t-vvidyasaga-ac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-23T16:43:34+00:00", "endpoint": "https://t-vvidyasaga-ac-learn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-23T16:43:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-23T16:43:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac-learn", + "name": "t-vvidyasaga-ac-learn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-27T17:42:41+00:00", "endpoint": "https://t-vvidyasaga-ac2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-27T17:42:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-27T17:42:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-vvidyasaga-rg/providers/Microsoft.AppConfiguration/configurationStores/t-vvidyasaga-ac2", + "name": "t-vvidyasaga-ac2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-12T16:26:03+00:00", "endpoint": "https://telemetryhashvalidation.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-12T16:26:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-13T23:01:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/telemetryhashvalidation", + "name": "TelemetryHashValidation", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-03-15T20:28:18+00:00", "endpoint": "https://testh.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-03-15T20:28:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-03-15T20:28:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/testh", + "name": "testh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-06-16T02:10:36+00:00", "endpoint": "https://tolani.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-16T02:10:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-16T02:17:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani", + "name": "tolani", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-29T21:40:07+00:00", "endpoint": "https://tolani-api-version-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-29T21:40:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-29T21:40:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-api-version-test", + "name": "tolani-api-version-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T17:56:34+00:00", "endpoint": "https://tolani-cnry-dev-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T17:56:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T17:56:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-cnry-dev-test", + "name": "tolani-cnry-dev-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "identity": {"type": "SystemAssigned", "principalId": + "2196a2a0-d665-409c-a05a-470b2b6409bf", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-06-19T20:20:22+00:00", + "endpoint": "https://tolani-demo.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-06-19T20:20:22+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-06-23T20:58:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-demo", + "name": "tolani-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-05T03:59:14+00:00", "endpoint": "https://tolani-prod-aad-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-05T03:59:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-19T21:22:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-aad-test", + "name": "tolani-prod-aad-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-01T16:38:22+00:00", "endpoint": "https://tolani-snap-ref-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-01T16:38:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-09T21:20:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-snap-ref-demo", + "name": "tolani-snap-ref-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-15T00:05:33+00:00", "endpoint": "https://tolani-snapshot-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-15T00:05:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-15T00:13:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-snapshot-test", + "name": "tolani-snapshot-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-19T18:22:29+00:00", "endpoint": "https://tolani-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-19T18:22:29+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-07-22T22:41:23+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-store", + "name": "tolani-store", "tags": {"myTestTag": "[12,14,15]", "myTestTag2": + "{\"key\":\"value\"}", "myTestTag3": "askldfjlksdjfksdf\\"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus2", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-24T22:15:44+00:00", "endpoint": "https://tolani-test-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-24T22:15:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-24T22:15:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-test-1", + "name": "tolani-test-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "brazilsouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-11T15:37:27+00:00", "endpoint": "https://brzls.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-11T15:37:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-11T15:37:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/brzls", + "name": "Brzls", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T17:29:23+00:00", "endpoint": "https://albertofori-notification-canadacentral.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-10T17:29:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T18:10:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-canadacentral", + "name": "albertofori-notification-canadacentral", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-05-29T20:34:57+00:00", "endpoint": "https://avgupta-appc-cac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-29T20:34:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-29T20:35:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-cac", + "name": "avgupta-appc-cac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadacentral", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.ManagedIdentity/userAssignedIdentities/junbchen-identity-cmk": + {"principalId": "e790947e-9f1d-4382-af0f-eec738f38956", "clientId": "43310a7e-10ee-4a8d-95d5-512587f292b9"}}, + "principalId": "c315f504-623d-47f4-8c17-5990a848717b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-07T14:26:45+00:00", + "endpoint": "https://junbchenconfig-demo-ca.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://junbchenkeyvault.vault.azure.net/keys/key1/6998a4384b444f4bad0bf27a556ad115", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-07T14:26:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T06:18:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-demo-ca", + "name": "junbchenconfig-demo-ca", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastasia", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T06:45:35+00:00", "endpoint": "https://appc-6oexkucpmwqte.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T06:45:35+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T09:57:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-rg-azd-test/providers/Microsoft.AppConfiguration/configurationStores/appc-6oexkucpmwqte", + "name": "appc-6oexkucpmwqte", "tags": {"azd-env-name": "test"}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "eastasia", + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-07-31T02:07:56+00:00", + "endpoint": "https://linglingye-appconfig-test.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-31T02:07:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-15T08:21:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linglingye-rg/providers/Microsoft.AppConfiguration/configurationStores/linglingye-appconfig-test", + "name": "linglingye-appconfig-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastasia", "properties": {"provisioningState": "Succeeded", "creationDate": + "2021-03-05T00:58:22+00:00", "endpoint": "https://teststore2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": null, "createdByType": null, "createdAt": "2021-03-05T00:58:22+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2023-05-10T06:06:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vendorteamtestrg/providers/Microsoft.AppConfiguration/configurationStores/teststore2", + "name": "TestStore2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-07T12:21:12+00:00", "endpoint": "https://202503071050snapshotfilters5in556ck5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:21:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:21:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050snapshotfilters5in556ck5", + "name": "202503071050SnapshotFilters5in556ck5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-07T12:21:12+00:00", "endpoint": "https://202503071050snapshotstoreonrneh6qvta.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-07T12:21:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T12:21:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/202503071050snapshotstoreonrneh6qvta", + "name": "202503071050SnapshotStoreonrneh6qvta", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-10T18:33:42+00:00", "endpoint": "https://albertofori-notification-frc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-11-10T18:33:42+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-09-11T09:16:13+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-frc", + "name": "albertofori-notification-frc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, + "principalId": "03682d8e-25ea-4541-a59b-9ebbbc02a84f", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-05-17T16:27:19+00:00", + "endpoint": "https://haiyiwen-francecentral-0517.azconfig.io", "encryption": + {"keyVaultProperties": {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt-2", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-17T16:27:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-12T17:24:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-francecentral-0517", + "name": "haiyiwen-francecentral-0517", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:51:58+00:00", "endpoint": "https://snapshotstore3tzfoxsj2hh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:51:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:51:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstore3tzfoxsj2hh", + "name": "SnapshotStore3tzfoxsj2hh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:53:28+00:00", "endpoint": "https://snapshotstore6nglgwfngm4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:53:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:53:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstore6nglgwfngm4", + "name": "SnapshotStore6nglgwfngm4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-19T19:57:22+00:00", "endpoint": "https://snapshotstorecw2f475e3rbcjdgongmzj3n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:57:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:57:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorecw2f475e3rbcjdgongmzj3n", + "name": "SnapshotStorecw2f475e3rbcjdgongmzj3n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T04:41:14+00:00", "endpoint": "https://snapshotstoredtargmcnsz3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:41:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:41:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoredtargmcnsz3", + "name": "SnapshotStoredtargmcnsz3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:02:07+00:00", "endpoint": "https://snapshotstorekz4vgltrfnd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:02:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:02:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorekz4vgltrfnd", + "name": "SnapshotStorekz4vgltrfnd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T04:42:38+00:00", "endpoint": "https://snapshotstoren7gxfapmtjw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:42:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:42:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoren7gxfapmtjw", + "name": "SnapshotStoren7gxfapmtjw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-19T19:56:01+00:00", "endpoint": "https://snapshotstoreopjrr76ymkn6nu453hufygh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:56:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:56:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoreopjrr76ymkn6nu453hufygh", + "name": "SnapshotStoreopjrr76ymkn6nu453hufygh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-01-29T23:28:22+00:00", "endpoint": "https://snapshotstoretpfayszap3s.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbwbtajdklwfk67dv4364xpuqyofxkkayxfyccf3lna6dulmb54f3trwrfxt7kqumw/providers/Microsoft.AppConfiguration/configurationStores/snapshotstoretpfayszap3s", + "name": "SnapshotStoretpfayszap3s", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-10T03:03:21+00:00", "endpoint": "https://snapshotstorexkvbufgx7cu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:03:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:03:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/snapshotstorexkvbufgx7cu", + "name": "SnapshotStorexkvbufgx7cu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-06T10:09:10+00:00", "endpoint": "https://freestore45.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-06T10:09:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T10:15:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestore45", + "name": "freestore45", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-07T07:55:12+00:00", "endpoint": "https://freeteststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-07T07:55:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:15:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freeteststore1", + "name": "freeteststore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-03-22T09:57:08+00:00", "endpoint": "https://testfree.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-22T09:57:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-22T09:58:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testfree", + "name": "testfree", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "koreacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-02T07:53:38+00:00", "endpoint": "https://testfree-cwanjau.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-02T07:53:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:50:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testfree-cwanjau", + "name": "testfree-cwanjau", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "germanywestcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-08-06T09:56:07+00:00", "endpoint": "https://freestoreeee.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-06T09:56:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-06T10:05:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestoreeee", + "name": "freeStoreeee", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uaenorth", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-31T20:44:08+00:00", "endpoint": "https://xuxu-premium-test-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": "test@example.com", "createdByType": "User", "createdAt": "2024-05-31T20:44:08+00:00", + "lastModifiedBy": "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": + "2024-05-31T20:44:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-premium-test-1", + "name": "xuxu-premium-test-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "norwayeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-05-12T20:17:59+00:00", "endpoint": "https://jlinares-noe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-12T20:17:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-17T09:11:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-noe", + "name": "jlinares-noe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southafricanorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-05-17T21:28:52+00:00", "endpoint": "https://jlinares-test-zan.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-05-17T21:28:52+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-05-17T21:28:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-zan", + "name": "jlinares-test-zan", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "ukwest", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-05-25T18:39:43+00:00", "endpoint": "https://albertoforiteststore3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-25T18:39:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-05-25T18:39:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertoforiteststore3", + "name": "albertoforitestStore3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-23T18:05:55+00:00", "endpoint": "https://avgupta-appc-wus3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-23T18:05:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-10T23:11:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-edge-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-wus3", + "name": "avgupta-appc-wus3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-31T16:36:31+00:00", "endpoint": "https://jimmy-arm-kv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-31T16:36:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-31T16:38:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmy-arm-kv", + "name": "jimmy-arm-kv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-15T20:48:29+00:00", "endpoint": "https://jimmyca-local-auth-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-15T20:48:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-15T20:48:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-local-auth-test", + "name": "jimmyca-local-auth-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-17T18:47:49+00:00", "endpoint": "https://jimmyca-temp-repro.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-17T18:47:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-17T18:47:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-temp-repro", + "name": "jimmyca-temp-repro", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "westus3", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-13T20:07:21+00:00", "endpoint": "https://jlinares-kj-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-13T20:07:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-13T20:08:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-kj-test", + "name": "jlinares-kj-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "brazilsoutheast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-02-10T07:12:05+00:00", "endpoint": "https://jlinares-brse.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-10T07:12:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-02-10T07:12:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-brse", + "name": "jlinares-brse", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-10-19T16:35:22+00:00", "endpoint": "https://abcappc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-10-19T16:35:22+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-30T22:58:04+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/abcappc", + "name": "abcAppC", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-24T17:22:12+00:00", "endpoint": "https://abcdevtest123.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-04-24T17:22:12+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-17T21:40:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_test1/providers/Microsoft.AppConfiguration/configurationStores/abcdevtest123", + "name": "abcdevTest123", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-19T19:00:55+00:00", "endpoint": "https://bugbash-test-exp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-19T19:00:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-19T19:00:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/minhaz-test/providers/Microsoft.AppConfiguration/configurationStores/bugbash-test-exp", + "name": "bugbash-test-exp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-22T02:28:03+00:00", "endpoint": "https://haiyiwen-dev-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-22T02:28:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-22T02:28:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-dev-swc", + "name": "haiyiwen-dev-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-16T21:40:56+00:00", "endpoint": "https://haiyiwen-swc-0716-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-16T21:40:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:40:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-swc-0716-1", + "name": "haiyiwen-swc-0716-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-13T00:19:15+00:00", "endpoint": "https://jiyu-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-13T00:19:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-13T00:21:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-swc", + "name": "jiyu-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-02-13T22:31:11+00:00", "endpoint": "https://jlinares-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-13T22:31:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-02-17T17:57:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-swc", + "name": "jlinares-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-12T09:12:08+00:00", "endpoint": "https://mgich-swc.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": "d272d921-c6fa-4394-889a-acb85a9de520"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-12T09:12:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-12T09:12:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-swc", + "name": "mgich-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-06-17T20:31:20+00:00", "endpoint": "https://portal-test-swc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-06-17T20:31:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-17T20:38:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test-swc", + "name": "portal-test-swc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedencentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-01-22T22:31:08+00:00", "endpoint": "https://tolani-prod-swc-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-22T22:31:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-22T22:31:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-rg/providers/Microsoft.AppConfiguration/configurationStores/tolani-prod-swc-1", + "name": "tolani-prod-swc-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "switzerlandwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-07-01T18:05:05+00:00", "endpoint": "https://jlinares-slw1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-01T18:05:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-07-01T18:05:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-slw1", + "name": "jlinares-slw1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "qatarcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-08-05T22:33:14+00:00", "endpoint": "https://jlinares-test-qac.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-05T22:33:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-05T22:33:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-test-qac", + "name": "jlinares-test-qac", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southindia", "properties": {"provisioningState": "Succeeded", + "creationDate": "2022-08-14T04:10:16+00:00", "endpoint": "https://jlinares-sin-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-14T04:10:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-14T04:10:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-sin-test", + "name": "jlinares-sin-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "polandcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-11T17:58:49+00:00", "endpoint": "https://jlinares-plc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-11T17:58:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-04-11T17:59:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-plc", + "name": "jlinares-plc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "canadaeast", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:16:04+00:00", "endpoint": "https://jlinares-cae.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:16:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-cae", + "name": "jlinares-cae", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "norwaywest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:17:12+00:00", "endpoint": "https://jlinares-now.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:17:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:17:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-now", + "name": "jlinares-now", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:19:10+00:00", "endpoint": "https://jlinares-auc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:19:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-31T21:47:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-auc", + "name": "jlinares-auc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "australiacentral2", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:20:00+00:00", "endpoint": "https://jlinares-auc2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:20:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-22T23:30:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-auc2", + "name": "jlinares-auc2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "francesouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-03-20T19:24:27+00:00", "endpoint": "https://jlinares-frs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T19:24:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-20T19:24:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-frs", + "name": "jlinares-frs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "israelcentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-08T22:28:48+00:00", "endpoint": "https://jlinares-ilc-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-08T22:28:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-29T21:06:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-ilc-test", + "name": "jlinares-ilc-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "southafricawest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-09-19T21:22:00+00:00", "endpoint": "https://jlinares-zaw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-09-19T21:22:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-09-19T21:22:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-zaw", + "name": "jlinares-zaw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "mexicocentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-01T22:05:42+00:00", "endpoint": "https://jlinares-mxc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-01T22:05:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-01T22:07:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-mxc", + "name": "jlinares-mxc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "spaincentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T17:59:45+00:00", "endpoint": "https://albertofori-notification-spaincentral.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T17:59:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-29T18:02:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-spaincentral", + "name": "albertofori-notification-spaincentral", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "spaincentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-29T21:04:44+00:00", "endpoint": "https://jlinares-esc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-29T21:04:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-29T21:07:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-esc", + "name": "jlinares-esc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "newzealandnorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-09-25T16:56:29+00:00", "endpoint": "https://jlinares-nzn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-25T16:56:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-25T16:56:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-nzn", + "name": "jlinares-nzn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "uaecentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-07-22T20:33:25+00:00", "endpoint": "https://jlinares-uaec.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-22T20:33:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-22T20:33:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-uaec", + "name": "jlinares-uaec", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "jioindiacentral", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-07-22T20:20:55+00:00", "endpoint": "https://jlinares-jinc.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-22T20:20:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-22T20:20:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-jinc", + "name": "jlinares-jinc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-06T02:14:44+00:00", "endpoint": "https://app-central-us-euap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 1728000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-03-06T02:14:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-05T19:04:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/app-central-us-euap", + "name": "app-central-us-euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-04-10T20:11:10+00:00", "endpoint": "https://avgupta-pe-appc-cuseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc-cuseuap/privateEndpointConnections/dupe-connection-name", + "name": "dupe-connection-name", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/austintolani-cuseuap/providers/Microsoft.Network/privateEndpoints/tolani-pe-1"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-10T20:11:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-10T16:59:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-appservice-rg/providers/Microsoft.AppConfiguration/configurationStores/avgupta-pe-appc-cuseuap", + "name": "avgupta-pe-appc-cuseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2021-12-14T21:54:18+00:00", "endpoint": "https://jimmyca-cuseuap-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cuseuap-3/privateEndpointConnections/jimmyca-pe", + "name": "jimmyca-pe", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.Network/privateEndpoints/jimmyca-pe"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-12-14T21:54:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-07T05:44:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-cuseuap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cuseuap-3", + "name": "jimmyca-cuseuap-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, + "principalId": "83480881-97ec-43f7-8dfc-8200cb4ac000", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-10-16T16:09:26+00:00", + "endpoint": "https://jiyu-cuseuap-store-1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, "privateEndpointConnections": null, + "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-10-16T16:09:26+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:56+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-cuseuap-store-1", + "name": "jiyu-cuseuap-store-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-07T07:59:52+00:00", "endpoint": "https://jiyu-cuseuap-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-07T07:59:52+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:33+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-1/providers/Microsoft.AppConfiguration/configurationStores/jiyu-cuseuap-test2", + "name": "jiyu-cuseuap-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-02-02T18:32:20+00:00", "endpoint": "https://jlinares-cuseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-02T18:32:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-02-02T18:32:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-test/providers/Microsoft.AppConfiguration/configurationStores/jlinares-cuseuap", + "name": "jlinares-cuseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-07T18:16:04+00:00", "endpoint": "https://kjeong-portal-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-07T18:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-05T14:26:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/kjeong-portal-test", + "name": "kjeong-portal-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-11-15T00:46:21+00:00", "endpoint": "https://nspinttestpoer5zfwwjmp2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "premium"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-15T00:46:21+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-03T20:52:13+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/nspinttestpoer5zfwwjmp2", + "name": "nspinttestpoer5zfwwjmp2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "centraluseuap", "identity": {"type": "SystemAssigned", "principalId": + "6f851a0b-ea65-444a-bf7e-209c41feaabc", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-03-01T03:21:20+00:00", + "endpoint": "https://portal-test3.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-01T03:21:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-03T20:52:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test3", + "name": "portal-test3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-05-01T22:40:28+00:00", "endpoint": "https://albertofori-canary-statistics-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-01T22:40:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-07T23:54:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-canary-statistics-test", + "name": "albertofori-canary-statistics-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-05-28T21:46:59+00:00", "endpoint": "https://albertofori-notification-euap-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-28T21:46:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-28T21:46:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-euap-test", + "name": "albertofori-notification-euap-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-11-09T23:19:34+00:00", "endpoint": "https://albertofori-notification-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-09T23:19:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-09T23:21:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-test", + "name": "albertofori-notification-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-25T17:21:39+00:00", "endpoint": "https://avgupta-appc-eus2euap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [], "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-25T17:21:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-03T01:44:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avgupta-appc-eus2euap", + "name": "avgupta-appc-eus2euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "identity": {"type": "SystemAssigned", "principalId": + "76d7f893-7d86-4e17-8095-3428a0f517dd", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-11-04T21:19:03+00:00", + "endpoint": "https://cdnconfigs.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-11-04T21:19:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-15T22:47:29+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/cdnconfigs", + "name": "cdnconfigs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-11T14:25:58+00:00", "endpoint": "https://haiyiwen-eus2euap-0311.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-03-11T14:25:58+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-28T19:22:20+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus2euap-0311", + "name": "haiyiwen-eus2euap-0311", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-05-19T18:00:03+00:00", "endpoint": "https://haiyiwen-euseuap.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-05-19T18:00:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-05-15T23:43:22+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-euseuap", + "name": "haiyiwen-euseuap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2023-10-20T16:09:11+00:00", "endpoint": "https://haiyiwen-euseuap-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-10-20T16:09:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-10-20T16:09:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-euseuap-2", + "name": "haiyiwen-euseuap-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jimmyca-wus/providers/microsoft.managedidentity/userassignedidentities/jimmyca-mi-4": + {"principalId": "949c3968-a2e3-4bdc-b9fe-920f4d5a183f", "clientId": "1cff8b01-4c3c-4d20-a72f-b169e7d0690b"}}, + "principalId": "8462ba54-c3ac-4a7e-ae69-f49bb0525330", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2020-02-14T00:05:52+00:00", + "endpoint": "https://jimmyca-eus2euap.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": null, + "createdByType": null, "createdAt": "2020-02-14T00:05:52+00:00", "lastModifiedBy": + null, "lastModifiedByType": null, "lastModifiedAt": "2021-08-05T15:50:34+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-eus2euap/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-eus2euap", + "name": "jimmyca-eus2euap", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-03-07T20:43:21+00:00", "endpoint": "https://jiyu-canary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe8", + "name": "jiyu-pe8", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe8"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe-13", + "name": "jiyu-pe-13", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-13"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "rej", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary/privateEndpointConnections/jiyu-pe-14", + "name": "jiyu-pe-14", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-14"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-03-07T20:43:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T23:14:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-canary", + "name": "jiyu-canary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2019-11-21T00:29:25+00:00", "endpoint": "https://storeincanary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-11-21T00:29:25+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-11-21T00:29:25+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/storeincanary", + "name": "StoreInCanary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus2euap", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-29T17:42:37+00:00", "endpoint": "https://testplugincanary.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-29T17:42:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-29T17:42:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testplugincanary", + "name": "testplugincanary", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "swedensouth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-04-01T00:16:04+00:00", "endpoint": "https://appconfig-dotnetprovider-integrationtest.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-01T00:16:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-24T22:30:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dotnetprovider-integrationtest/providers/Microsoft.AppConfiguration/configurationStores/appconfig-dotnetprovider-integrationtest", + "name": "appconfig-dotnetprovider-integrationtest", "tags": {}}, {"type": + "Microsoft.AppConfiguration/configurationStores", "location": "swedensouth", + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-09-19T21:45:59+00:00", + "endpoint": "https://jlinares-sws-test.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-09-19T21:45:59+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-09-19T21:46:00+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-sws-test", + "name": "jlinares-sws-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T17:22:44+00:00", "endpoint": "https://albertofori-notification-test-twn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T17:22:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-08T20:41:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-test-twn", + "name": "albertofori-notification-test-twn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorth", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-26T23:42:16+00:00", "endpoint": "https://jlinares-twn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-26T23:42:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-26T23:44:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-twn", + "name": "jlinares-twn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "taiwannorthwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2024-04-29T20:26:19+00:00", "endpoint": "https://jlinares-twnw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T20:26:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-29T20:32:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-twnw", + "name": "jlinares-twnw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "israelnorthwest", "properties": {"provisioningState": "Succeeded", + "creationDate": "2025-07-12T01:32:16+00:00", "endpoint": "https://albertofori-notification-ilnw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-12T01:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-12T01:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/albertofori-notification-ilnw", + "name": "albertofori-notification-ilnw", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZtbT%2bNGFID%2fi1X1CRMIS6MiraopeNsUSKidKF2Ul4kzCU58Y8ZOsiD%2be885doZJoFJfzxuwyq6%2bPdeZ%2bXj1crWr7pJ8bbyrV28SRKPrYDAKxd048q68p6oqzVWnk8lcLlWm8upUvtRancZF1jH1zMQ6KaukyE2n15tfytnZL35Pzef%2bF6VifxarX%2f3Lbnx%2bPutdzmYXvU6pi00yV9p07pNYF6ZYVKeiLK%2bLfJEsay3xr%2brE7ndRVWhlfpNl4m%2fgc%2fDnX7tn3S8%2b%2fENn5z%2f%2fZNZJOSrWKv9qFHxubopax8o78ZhSrJIs%2bxFLP66NL8uy%2ba8AHAwMt4js6l1dKVMZDCEwBIIfw0LJCvJ9kaSV0giTVxuZpZuLZ7N70s%2fLp%2bdd1YYnGIfDh4BX0ZRSy0wBmgGIaDge%2fYlBElFf8OKwpeLPi4309xknxhG2sr5AKl5EVZHKPPFlrXxMO78LARoMQwgQwzRDgrpcajlXC62wF4xvKdtYxgSG2Nyv18Y%2fB5CmqXWZgWBGqV2pdIIzncYusDRDhhtLUyhUJBiQ30Px2L9jmF0z%2fZJiG74WA3Ej2v2FV16t6nwWP6m8WVv8ucoKP5ZtlfCbKphTNEqw%2bX4LxeA6YBkWk8vSPBUNy269mdWL5a4X10B1OwwDnrmGwcFh4sdbma8kwvwRhPdi8N05xPAqH8ShfFPNjBQBTXxeELj1%2b6VWWVJnzeqCXRlAJuI7vzVslSa5hAOonxe4ttBYEd%2fCPjRpXMZ4hcbC0LB8kTkQjW%2bxXHhxyHQGh7FiUejEtugLYGn2lwteMDYo6xWVC3A4KwzjiplpQyUzCW4CmJx0qcQrNO0ZjPZ9s41p348m%2fdFjEN6JwQ2%2fwrG5ZtItduW%2fxUiELENjSaiVPcsYaKg59wc33C4vLItJ8n0LeBhihvEOTZliVJrjDOM%2bFktsY80Cw7jk82ILGPZGjHdqyRpT6xiG2c2FrXugeT9hMry5sCALukfuR6EI7ngnWJLG%2b1bs7PyMy%2f9FYvnfB%2f%2f0r4e8Q5PtaNg%2fiD7PrdJWizIIMggmj4HAac%2f5RJm%2f0GFS8LwgsyGppcKY%2fNUf0h7Ju1BWSY4wLcQ4CsbigdcBrCx0JVNqxHi%2bb99a%2bHHgIaVM6yUEBEQK%2fQNYIjoWcx72Zmv2I3Ik%2bhMx4Ny%2fqi32L4eD8agHFpz1zRpGQeEH41zxwdVrlSySmF4p%2fSQFuLcTT%2bpMLJdaLWWl5mQAQWsT4T2Ao9F0L%2fVaafjR6%2fRQapp6V1OuWtPUO5m%2bt3NuJJ%2bqTYSE6TmOuPEc6E3E0cwnbhz%2fR3GyYWrsE26I75oTgdDUxWDhkzQ3ls9UJ6KytyFIxo3qg%2b5ESDS8eKYcrnyO8kQ4rfTENDbv2hPBtMs4OxiIy7H6RDzNEOqy43H1JwJxXg%2b5wZACRRAHEhQ3jM81KFs1HKeOfWeHAoEl9ECG4hae%2f9KhiMwVoriBYZBcJYqAPkpR3LBcLYqQxq0YxQ3kEzWKeGDNaeUobkT24hT0KEJxHktoeWMLhLXkgyLVJBxJUtxYnDsU274viKfZdeBrXnchNttaVYpYnHWH48HHMqEu1ZSQK0xxC9EHZapFOpCmuEHZGKE2RUCuOMWWhlocqFNNiPCXv%2bjRiy3PXp8ingOBii0SKFRE8y5RsUUBjYpQmmUHJxBbFFCpCMXeuLVPrGyBQED6FIjdbYjt1KhUEVJzUqW1lG14QKsilgOxii3NXq0iJOe8wLolgF5FPAeCFdsQgWLVRMeRrNjCgGZFMEeiFVseUK2IB25BuM8d1K2I5Ui4YhsbVK4I6EC64objaldE0771oHjFjQUPOa56RTyOfMWNx244e%2f2KgBxxiS0QaEvHLKxXAtSwCOhIxOIWIOca8aOKNfXevLd%2fAQ%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '365837' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 48200603-bdd8-4a79-a3fe-a5bb94fac6df + - 60be5fc0-cde0-44cb-938d-ffbf653ab9f0 + - fcd61b2b-9a7a-4815-ad56-1c02fe42506a + - 133f7d3c-5c26-479d-8345-e73734c77cd8 + - 45c338d4-2507-4914-85ba-63ab16f664b2 + - f8bda9cf-2e8e-4557-8b70-448fa5a6138e + - fc355244-b53d-469b-9ac5-7c2e9d1f2d1d + - 92bbba97-268f-43a6-a8c0-c78f60f209b5 + - e1807dec-a919-458a-8c6a-996ace1dd4bc + - c4832bff-e17b-4a6e-8d63-ff3aebf4904d + - c904be1c-2116-4a9b-bdd4-d46c312fc83f + - b717a14c-7d8c-4f89-8a1a-02f25fdf5230 + - 80d39074-aa64-4a79-9448-3d2efa365960 + - e6c96867-efc6-404a-b09a-c88ac569d170 + - 18a857f7-41fb-46d7-8ed7-1f80d31efeff + - d66f9aec-9dd9-40fb-b905-86edba0deff9 + - 72c3b0c8-409b-44eb-a2c2-820b9ff6ca53 + - cfeb796c-2082-4da3-bc2c-35f2b4fb001a + - 8df01174-5e33-4efd-88b6-a80404f63e08 + - c685963d-ea49-459c-bbdb-892b7a14ced8 + - ee89ce04-3e4a-4dc1-8f54-ffc2ef0558d5 + - 36e14df3-2ef1-4eab-b873-c3cc21d7b5a9 + - d7f47e82-d802-4c22-bf28-5be5496f6678 + - 16f0972f-59ea-4e4c-9acf-ce4a11071a24 + - db43efaf-81cc-40ad-981d-aaaec811f66b + - f655d79e-22e1-446f-b8b7-d40a52ba2678 + - e80d9db8-5ffe-4cc0-be17-4a9a45e3b585 + - e9df854c-77a5-4dab-a315-d78d12d72609 + - 0a1fb06d-9327-4302-97e1-905820e7795b + - cf059f4d-1eef-4bca-8dd6-dca4ab70cc25 + - b70cdb90-0687-4051-9c78-ba05a15fac38 + - 7f7eb54a-f4a6-4b45-b4dc-61a4702bb0b3 + - 8c182ab3-0cca-4703-81fb-7da5b4ce586e + - 323e49a9-306c-4d55-98f5-3521597810e8 + - dbf9d0a5-c840-4693-ac63-fb4177b67f3e + - b3b816ac-23be-4f26-a8fa-1f6b691212a1 + - 8cc56d8b-6a22-4a4a-b804-cf08b36717c2 + - 474583e3-93aa-4ced-a0b7-86643a5b49e1 + - b0363a1b-1434-47aa-bae8-06457f3e918e + - aba38542-112d-4f4f-820e-282c5dd5267f + - 8368d64d-0279-4ae1-a318-3949d040d06f + - 962fe2d0-913e-4bea-ba23-c7b8fb20d310 + - 9b1f2039-408d-4caf-840f-8d504d5e08fc + - 9fd3dc15-d190-4d7d-b285-5eb99cda620c + - 8b6d8b52-cc24-49a6-b752-e1918715436b + - 34774de0-b054-4656-9c91-f96a182605e4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 45D8BF9FC4EB49BB9BE8358D75315E42 Ref B: MAA201060514021 Ref C: 2025-08-15T03:19:48Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZtbT%2BNGFID/i1X1CRMIS6MiraopeNsUSKidKF2Ul4kzCU58Y8ZOsiD%2Be885doZJoFJfzxuwyq6%2BPdeZ%2BXj1crWr7pJ8bbyrV28SRKPrYDAKxd048q68p6oqzVWnk8lcLlWm8upUvtRancZF1jH1zMQ6KaukyE2n15tfytnZL35Pzef%2BF6VifxarX/3Lbnx%2BPutdzmYXvU6pi00yV9p07pNYF6ZYVKeiLK%2BLfJEsay3xr%2BrE7ndRVWhlfpNl4m/gc/DnX7tn3S8%2B/ENn5z/ZNZJOSrWKv9qFHxubopax8o78ZhSrJIs%2BxFLP66NL8uy%2Ba8AHAwMt4js6l1dKVMZDCEwBIIfw0LJCvJ9kaSV0giTVxuZpZuLZ7N70s/Lp%2Bdd1YYnGIfDh4BX0ZRSy0wBmgGIaDge/YlBElFf8OKwpeLPi4309xknxhG2sr5AKl5EVZHKPPFlrXxMO78LARoMQwgQwzRDgrpcajlXC62wF4xvKdtYxgSG2Nyv18Y/B5CmqXWZgWBGqV2pdIIzncYusDRDhhtLUyhUJBiQ30Px2L9jmF0z/ZJiG74WA3Ej2v2FV16t6nwWP6m8WVv8ucoKP5ZtlfCbKphTNEqw%2BX4LxeA6YBkWk8vSPBUNy269mdWL5a4X10B1OwwDnrmGwcFh4sdbma8kwvwRhPdi8N05xPAqH8ShfFPNjBQBTXxeELj1%2B6VWWVJnzeqCXRlAJuI7vzVslSa5hAOonxe4ttBYEd/CPjRpXMZ4hcbC0LB8kTkQjW%2BxXHhxyHQGh7FiUejEtugLYGn2lwteMDYo6xWVC3A4KwzjiplpQyUzCW4CmJx0qcQrNO0ZjPZ9s41p348m/dFjEN6JwQ2/wrG5ZtItduW/xUiELENjSaiVPcsYaKg59wc33C4vLItJ8n0LeBhihvEOTZliVJrjDOM%2BFktsY80Cw7jk82ILGPZGjHdqyRpT6xiG2c2FrXugeT9hMry5sCALukfuR6EI7ngnWJLG%2B1bs7PyMy/9FYvnfB/0r4e8Q5PtaNg/iD7PrdJWizIIMggmj4HAac/5RJm/0GFS8LwgsyGppcKY/NUf0h7Ju1BWSY4wLcQ4CsbigdcBrCx0JVNqxHi%2Bb99a%2BHHgIaVM6yUEBEQK/QNYIjoWcx72Zmv2I3Ik%2BhMx4Ny/qi32L4eD8agHFpz1zRpGQeEH41zxwdVrlSySmF4p/SQFuLcTT%2BpMLJdaLWWl5mQAQWsT4T2Ao9F0L/VaafjR6/RQapp6V1OuWtPUO5m%2Bt3NuJJ%2BqTYSE6TmOuPEc6E3E0cwnbhz/R3GyYWrsE26I75oTgdDUxWDhkzQ3ls9UJ6KytyFIxo3qg%2B5ESDS8eKYcrnyO8kQ4rfTENDbv2hPBtMs4OxiIy7H6RDzNEOqy43H1JwJxXg%2B5wZACRRAHEhQ3jM81KFs1HKeOfWeHAoEl9ECG4hae/9KhiMwVoriBYZBcJYqAPkpR3LBcLYqQxq0YxQ3kEzWKeGDNaeUobkT24hT0KEJxHktoeWMLhLXkgyLVJBxJUtxYnDsU274viKfZdeBrXnchNttaVYpYnHWH48HHMqEu1ZSQK0xxC9EHZapFOpCmuEHZGKE2RUCuOMWWhlocqFNNiPCXv%2BjRiy3PXp8ingOBii0SKFRE8y5RsUUBjYpQmmUHJxBbFFCpCMXeuLVPrGyBQED6FIjdbYjt1KhUEVJzUqW1lG14QKsilgOxii3NXq0iJOe8wLolgF5FPAeCFdsQgWLVRMeRrNjCgGZFMEeiFVseUK2IB25BuM8d1K2I5Ui4YhsbVK4I6EC64objaldE0771oHjFjQUPOa56RTyOfMWNx244e/2KgBxxiS0QaEvHLKxXAtSwCOhIxOIWIOca8aOKNfXevLd/AQ%3D%3D + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:50+00:00", "endpoint": "https://featurefiltertestquqw5w3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestquqw5w3", + "name": "FeatureFilterTestquqw5w3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:30+00:00", "endpoint": "https://featurefiltertestvmh264rozmfl2rfdmwj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestvmh264rozmfl2rfdmwj", + "name": "FeatureFilterTestvmh264rozmfl2rfdmwj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://featurefiltertestwroox3kw3473yar2iys.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurefiltertestwroox3kw3473yar2iys", + "name": "FeatureFilterTestwroox3kw3473yar2iys", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:17+00:00", "endpoint": "https://featurenamespacetest3zfo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetest3zfo", + "name": "FeatureNamespaceTest3zfo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-29T23:28:21+00:00", "endpoint": "https://featurenamespacetest43nd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3deuywmwdctmiw3s7hmjcw2tmqnelmu4o67k22372j3wxo6fmrhq2w3zzwjipe7l5/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetest43nd", + "name": "FeatureNamespaceTest43nd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://featurenamespacetestdm3m.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestdm3m", + "name": "FeatureNamespaceTestdm3m", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://featurenamespacetestl2rv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestl2rv", + "name": "FeatureNamespaceTestl2rv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:58:27+00:00", "endpoint": "https://featurenamespacetestomjxuvpkpmgwfeje.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:58:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:58:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestomjxuvpkpmgwfeje", + "name": "FeatureNamespaceTestomjxuvpkpmgwfeje", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:28+00:00", "endpoint": "https://featurenamespacetestooeq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestooeq", + "name": "FeatureNamespaceTestooeq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:36:08+00:00", "endpoint": "https://featurenamespacetestvjoivvcjifknwzao.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:36:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:36:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestvjoivvcjifknwzao", + "name": "FeatureNamespaceTestvjoivvcjifknwzao", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://featurenamespacetestxed3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestxed3", + "name": "FeatureNamespaceTestxed3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://featurenamespacetestysdks2bhjk7idleh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featurenamespacetestysdks2bhjk7idleh", + "name": "FeatureNamespaceTestysdks2bhjk7idleh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:14+00:00", "endpoint": "https://featuretest3fn4mdqdwkvlndvuwfdofk3nr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretest3fn4mdqdwkvlndvuwfdofk3nr", + "name": "FeatureTest3fn4mdqdwkvlndvuwfdofk3nr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:20+00:00", "endpoint": "https://featuretest4o7tljrbfkuwj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:20+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretest4o7tljrbfkuwj", + "name": "FeatureTest4o7tljrbfkuwj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://featuretestckfolm256bht24scu2gxt2jxo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestckfolm256bht24scu2gxt2jxo", + "name": "FeatureTestckfolm256bht24scu2gxt2jxo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:38+00:00", "endpoint": "https://featuretestct5gfchdp63sj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestct5gfchdp63sj", + "name": "FeatureTestct5gfchdp63sj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:49:44+00:00", "endpoint": "https://featuretestk65tt5ts6zra7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:49:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:49:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk4hbkzkjzu2at45fpfafydyfdxvqrlfr3xepr3lp6uzumo5kdsauqvuew6f3tw62u/providers/Microsoft.AppConfiguration/configurationStores/featuretestk65tt5ts6zra7", + "name": "FeatureTestk65tt5ts6zra7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:15+00:00", "endpoint": "https://featuretestkqkahggahaewy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestkqkahggahaewy", + "name": "FeatureTestkqkahggahaewy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:14+00:00", "endpoint": "https://featuretesto4e67aajlsexw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretesto4e67aajlsexw", + "name": "FeatureTesto4e67aajlsexw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:29+00:00", "endpoint": "https://featuretestop22xb7epknx4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:29+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestop22xb7epknx4", + "name": "FeatureTestop22xb7epknx4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:31+00:00", "endpoint": "https://featuretestzx7ts5ebrspx23s53i5nb2k2y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:31+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/featuretestzx7ts5ebrspx23s53i5nb2k2y", + "name": "FeatureTestzx7ts5ebrspx23s53i5nb2k2y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-07-24T07:29:54+00:00", "endpoint": "https://freestore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-24T07:29:54+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-26T06:18:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/freestore", + "name": "freeStore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-09T07:58:37+00:00", "endpoint": "https://haiyiwen-010925.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-01-09T07:58:37+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-05-01T21:11:00+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-010925", + "name": "haiyiwen-010925", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-16T19:14:44+00:00", "endpoint": "https://haiyiwen-eus-0116.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-01-16T19:14:44+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-06-11T15:57:58+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-0116", + "name": "haiyiwen-eus-0116", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/haiyiwen-dev-mi": + {"principalId": "4737fa4b-0925-4903-9d26-98d5b6cf6e1c", "clientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-01-16T08:16:09+00:00", + "endpoint": "https://haiyiwen-eus-011625.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://haiyiwen-test.vault.azure.net/keys/appconfig-encrypt", + "identityClientId": "0fe7b4f0-46e5-43cc-9f27-6ee68a00c1c3"}}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-011625/privateEndpointConnections/pe-test-eus2-011625", + "name": "pe-test-eus2-011625", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.Network/privateEndpoints/pe-test-eus2-011625"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-16T08:16:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-16T21:06:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-011625", + "name": "haiyiwen-eus-011625", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2024-03-11T14:22:45+00:00", "endpoint": "https://haiyiwen-eus-0311.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "469b90ce-feb7-494d-89eb-783f759a0f7c", "createdByType": + "Application", "createdAt": "2024-03-11T14:22:45+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-04-04T23:30:27+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-eus-0311", + "name": "haiyiwen-eus-0311", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-10T16:50:17+00:00", "endpoint": "https://haiyiwen-templatedeployment-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-10T16:50:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-10T16:50:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/haiyiwen-templatedeployment-1", + "name": "haiyiwen-templatedeployment-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "640e6a52-a59d-48cf-a8d4-f41017c598fe", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-18T13:57:31+00:00", + "endpoint": "https://identitytest35gnbkkbe4fuezy67dlwn2y5.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:57:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:58:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytest35gnbkkbe4fuezy67dlwn2y5", + "name": "IdentityTest35gnbkkbe4fuezy67dlwn2y5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "34ffa33e-f25d-4c67-9253-c2d17c037adc", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-19T19:51:15+00:00", + "endpoint": "https://identitytestbe2akedryikn4m35wjkaqprj.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestbe2akedryikn4m35wjkaqprj", + "name": "IdentityTestbe2akedryikn4m35wjkaqprj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "438e333f-bb2e-497c-97b8-dd202b78c026", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-08-14T05:50:01+00:00", + "endpoint": "https://identitytestcs7kbf253whm.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestcs7kbf253whm", + "name": "IdentityTestcs7kbf253whm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "5a4a8ed8-9446-4999-93d2-9818ea8132a9", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T03:43:27+00:00", + "endpoint": "https://identitytestf72x2di6qyer.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestf72x2di6qyer", + "name": "IdentityTestf72x2di6qyer", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "b0ee3229-1ce2-40d1-a196-b8459b9f9d6b", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T04:32:16+00:00", + "endpoint": "https://identitytesthm4vi6lxafkx.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytesthm4vi6lxafkx", + "name": "IdentityTesthm4vi6lxafkx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "20901f43-0e74-480b-9d79-80b7a5bda9d3", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T02:53:34+00:00", + "endpoint": "https://identitytestkpchhiqxtnsq.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestkpchhiqxtnsq", + "name": "IdentityTestkpchhiqxtnsq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "42e1eeb5-d772-47fd-a51c-ab9664dbc084", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-18T13:35:06+00:00", + "endpoint": "https://identitytestpt6bwjon56pcoo6xapfdkyur.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:35:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:35:54+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestpt6bwjon56pcoo6xapfdkyur", + "name": "IdentityTestpt6bwjon56pcoo6xapfdkyur", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg7x3az6ip3htuovmj7yywt4wnb4e2pzvtynszyldonhf5uvclyl523rjteqosjhkqw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/UserAssignedIdentityten5": + {"principalId": "b7e8662e-ea87-44a8-a499-f612e314174c", "clientId": "c555e5da-6354-4a44-acaa-c1226a17c985"}}, + "principalId": "91287d71-e497-4d5c-8782-9eb2d16347f4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-12-03T08:41:53+00:00", + "endpoint": "https://identitytestqlutj2gls4u7.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:53+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7x3az6ip3htuovmj7yywt4wnb4e2pzvtynszyldonhf5uvclyl523rjteqosjhkqw/providers/Microsoft.AppConfiguration/configurationStores/identitytestqlutj2gls4u7", + "name": "IdentityTestqlutj2gls4u7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "209c3dad-96ee-4da7-bf9b-81bcb4c6ee89", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T02:22:10+00:00", + "endpoint": "https://identitytestwha7v4vki3m5.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/identitytestwha7v4vki3m5", + "name": "IdentityTestwha7v4vki3m5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:59:07+00:00", "endpoint": "https://importexporttest4buijfjw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:59:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:59:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdewrmekwlmmelzxyujxxqakoibx7umiujirxwe7z5lqr6mkvdzyuw5ovod645k3ab/providers/Microsoft.AppConfiguration/configurationStores/importexporttest4buijfjw", + "name": "ImportExportTest4buijfjw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:23+00:00", "endpoint": "https://importexporttestcnu3plvdikjy7dxroazf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestcnu3plvdikjy7dxroazf", + "name": "ImportExportTestcnu3plvdikjy7dxroazf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:15+00:00", "endpoint": "https://importexporttestfllunlafc2qqdvoasyuk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestfllunlafc2qqdvoasyuk", + "name": "ImportExportTestfllunlafc2qqdvoasyuk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:07+00:00", "endpoint": "https://importexporttestgkjpjcmg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:50:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:50:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestgkjpjcmg", + "name": "ImportExportTestgkjpjcmg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:41:57+00:00", "endpoint": "https://importexporttestjozvptem.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:41:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs4u4depezol5gm5zemiy4hklc4cl7kot6w4mdlqmsd3nlq6bhmbo47vaorof2y7on/providers/Microsoft.AppConfiguration/configurationStores/importexporttestjozvptem", + "name": "ImportExportTestjozvptem", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:00:30+00:00", "endpoint": "https://importexporttestoggywcna.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:00:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:00:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestoggywcna", + "name": "ImportExportTestoggywcna", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:07+00:00", "endpoint": "https://importexporttestukq4e3atuwnwdnrzlyim.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestukq4e3atuwnwdnrzlyim", + "name": "ImportExportTestukq4e3atuwnwdnrzlyim", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:39:40+00:00", "endpoint": "https://importexporttestyouwfl6v.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:39:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:39:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importexporttestyouwfl6v", + "name": "ImportExportTestyouwfl6v", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://importtest7ful2grtebgoiq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtest7ful2grtebgoiq", + "name": "ImportTest7ful2grtebgoiq", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://importtestgiddobrgr672gjpl3hucqravfy.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestgiddobrgr672gjpl3hucqravfy", + "name": "ImportTestgiddobrgr672gjpl3hucqravfy", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://importtestlypau4klicvvgj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestlypau4klicvvgj", + "name": "ImportTestlypau4klicvvgj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://importtestq7zk6uhonoio5k.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestq7zk6uhonoio5k", + "name": "ImportTestq7zk6uhonoio5k", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:44:47+00:00", "endpoint": "https://importtesttcbikylpv6ng27xb3emuessgdi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:44:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:44:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtesttcbikylpv6ng27xb3emuessgdi", + "name": "ImportTesttcbikylpv6ng27xb3emuessgdi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:11+00:00", "endpoint": "https://importtestvguwb2vces34ma.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:11+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:11+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestvguwb2vces34ma", + "name": "ImportTestvguwb2vces34ma", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://importtestxpbvk6phmolm2x.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestxpbvk6phmolm2x", + "name": "ImportTestxpbvk6phmolm2x", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T14:07:21+00:00", "endpoint": "https://importtestxx236biyz2eshdvim62cvnctxv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T14:07:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T14:07:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/importtestxx236biyz2eshdvim62cvnctxv", + "name": "ImportTestxx236biyz2eshdvim62cvnctxv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d0a289d3-184f-4608-bc59-c38f24b695a8", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-05-01T18:05:52+00:00", + "endpoint": "https://jimmyca-ai-sample.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-05-01T18:05:52+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-06-23T02:01:48+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-ai-sample", + "name": "jimmyca-ai-sample", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-01-16T17:00:19+00:00", "endpoint": "https://jimmyca-eus-rep.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-01-16T17:00:19+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-01-06T21:48:03+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-eus-rep", + "name": "jimmyca-eus-rep", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jiyu/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jiyu-id-test": + {"principalId": "cf7f0571-ee04-4e37-8e8d-51c2c6debf21", "clientId": "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-04-04T02:23:55+00:00", + "endpoint": "https://jiyu-createtest5.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://jiyu-keyvault.vault.azure.net/keys/key2", "identityClientId": + "6efd7a73-2f91-49b1-a2d3-f1fda4e731b1"}}, "privateEndpointConnections": null, + "publicNetworkAccess": "Disabled", "disableLocalAuth": true, "softDeleteRetentionInDays": + 3, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2023-04-04T02:23:55+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2023-04-04T02:24:08+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-policytest/providers/Microsoft.AppConfiguration/configurationStores/jiyu-createtest5", + "name": "jiyu-createtest5", "tags": {"tag": "tagv"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-03T21:56:21+00:00", "endpoint": "https://jiyu-eus.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-eus", + "name": "jiyu-pe-eus", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-eus"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-weu", + "name": "jiyu-pe-weu", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-weu"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-pe-eus2", + "name": "jiyu-pe-eus2", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-eus2"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus/privateEndpointConnections/jiyu-test", + "name": "jiyu-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-03T21:56:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-03T21:56:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus", + "name": "jiyu-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "None"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2023-02-15T23:49:31+00:00", "endpoint": "https://jiyu-eus1.azconfig.io", + "encryption": {"keyVaultProperties": {"keyIdentifier": "https://jiyu-keyvault1.vault.azure.net/keys/kekeke", + "identityClientId": null}}, "privateEndpointConnections": [], "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-15T23:49:31+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-08T23:43:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus1", + "name": "jiyu-eus1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "fbaa111b-8b39-4f75-906d-b4300c88aef1", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-02-16T01:50:00+00:00", + "endpoint": "https://jiyu-eus3.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus3/privateEndpointConnections/staticip-test", + "name": "staticip-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/staticip-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-16T01:50:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T00:08:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-eus3", + "name": "jiyu-eus3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-11-18T23:30:42+00:00", "endpoint": "https://jiyu-policyteststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-11-18T23:30:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-19T00:01:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-policytest2/providers/Microsoft.AppConfiguration/configurationStores/jiyu-policyteststore", + "name": "jiyu-policyteststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-29T21:47:07+00:00", "endpoint": "https://jiyu-teststore1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore1/privateEndpointConnections/jiyu-pe-5", + "name": "jiyu-pe-5", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.Network/privateEndpoints/jiyu-pe-5"}, + "privateLinkServiceConnectionState": {"status": "Rejected", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "disableLocalAuth": false, + "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-29T21:47:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-02T22:07:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-teststore1", + "name": "jiyu-teststore1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2020-03-19T23:10:19+00:00", "endpoint": "https://jiyu-throttle-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2020-03-19T23:10:19+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2022-10-11T23:32:37+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-throttle-1", + "name": "jiyu-throttle-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-17T00:37:26+00:00", "endpoint": "https://jlinares-appconfig-eastus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-17T00:37:26+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-17T01:55:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares-eventgridtests/providers/Microsoft.AppConfiguration/configurationStores/jlinares-appconfig-eastus", + "name": "jlinares-appconfig-eastus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-11-18T20:26:57+00:00", "endpoint": "https://jlinares-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-11-18T20:26:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-02T01:15:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlinares/providers/Microsoft.AppConfiguration/configurationStores/jlinares-eus", + "name": "jlinares-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-15T05:37:24+00:00", "endpoint": "https://junbchenconfig-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-pe/privateEndpointConnections/junbchen-pe-test", + "name": "junbchen-pe-test", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/privateEndpoints/junbchen-pe-test"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-15T05:37:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-03-15T08:42:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.AppConfiguration/configurationStores/junbchenconfig-pe", + "name": "junbchenconfig-pe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-19T04:06:47+00:00", "endpoint": "https://juniwang-app-ev2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-19T04:06:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-19T04:06:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-aks/providers/Microsoft.AppConfiguration/configurationStores/juniwang-app-ev2", + "name": "juniwang-app-ev2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "d25770c8-9687-44f3-a3bd-cca223b9c6a4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2023-05-08T03:33:40+00:00", + "endpoint": "https://juniwang-appc.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": null, "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-05-08T03:33:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T23:59:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/juniwang-aks/providers/Microsoft.AppConfiguration/configurationStores/juniwang-appc", + "name": "juniwang-appc", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-30T16:59:23+00:00", "endpoint": "https://kjeong-store-eus.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-30T16:59:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-30T16:59:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/kjeong-store-eus", + "name": "kjeong-store-eus", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://kvrevisiontest4fqq5hbnxzmfbwe5dby2vr.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontest4fqq5hbnxzmfbwe5dby2vr", + "name": "KVRevisionTest4fqq5hbnxzmfbwe5dby2vr", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://kvrevisiontest4kyrrschro.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontest4kyrrschro", + "name": "KVRevisionTest4kyrrschro", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://kvrevisiontestanuibrjieg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestanuibrjieg", + "name": "KVRevisionTestanuibrjieg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://kvrevisiontestibwkfz57qn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestibwkfz57qn", + "name": "KVRevisionTestibwkfz57qn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:10+00:00", "endpoint": "https://kvrevisiontestkoz2orto53hamn6kwqjrwi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestkoz2orto53hamn6kwqjrwi", + "name": "KVRevisionTestkoz2orto53hamn6kwqjrwi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:57+00:00", "endpoint": "https://kvrevisiontestsnib44xkg5dbxlix2d6pep.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestsnib44xkg5dbxlix2d6pep", + "name": "KVRevisionTestsnib44xkg5dbxlix2d6pep", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:33+00:00", "endpoint": "https://kvrevisiontestuexzu42fm2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:33+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:33+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestuexzu42fm2", + "name": "KVRevisionTestuexzu42fm2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://kvrevisiontestxsqvwqjrg6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvrevisiontestxsqvwqjrg6", + "name": "KVRevisionTestxsqvwqjrg6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:02:56+00:00", "endpoint": "https://kvsetimporttest67l2slzrs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:02:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:02:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttest67l2slzrs", + "name": "KVSetImportTest67l2slzrs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:52:40+00:00", "endpoint": "https://kvsetimporttest7fzhph6k3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:52:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:52:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttest7fzhph6k3", + "name": "KVSetImportTest7fzhph6k3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://kvsetimporttestdfvwuuwjhqdkccxnon3h5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestdfvwuuwjhqdkccxnon3h5", + "name": "KVSetImportTestdfvwuuwjhqdkccxnon3h5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:04+00:00", "endpoint": "https://kvsetimporttestdtjdjob3d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtkn533s5bkfkpe7zbxjwrxpfrqlsvdzfa42gkxliahqseuj7hheaq37kwjdupgrzz/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestdtjdjob3d", + "name": "KVSetImportTestdtjdjob3d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:44+00:00", "endpoint": "https://kvsetimporttestjetl2c5hb.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2d54inm2sz2hhdcwlskpsbcf2rqtxjk35s6cz3paltnbiyqomhp2huz4qkwzxygfs/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestjetl2c5hb", + "name": "KVSetImportTestjetl2c5hb", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://kvsetimporttestlfet64gx7k247aqey5idx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestlfet64gx7k247aqey5idx", + "name": "KVSetImportTestlfet64gx7k247aqey5idx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T06:02:59+00:00", "endpoint": "https://kvsetimporttestn2hbyeqob.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T06:02:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T06:02:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestn2hbyeqob", + "name": "KVSetImportTestn2hbyeqob", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:42:14+00:00", "endpoint": "https://kvsetimporttestobgriqz5h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:42:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:42:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestobgriqz5h", + "name": "KVSetImportTestobgriqz5h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:07+00:00", "endpoint": "https://kvsetimporttestv6g2yjvgh3vknvlvyhyk6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:56:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:56:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestv6g2yjvgh3vknvlvyhyk6", + "name": "KVSetImportTestv6g2yjvgh3vknvlvyhyk6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:30:57+00:00", "endpoint": "https://kvsetimporttestx2c3iqwtw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:30:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:30:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvsetimporttestx2c3iqwtw", + "name": "KVSetImportTestx2c3iqwtw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:45:02+00:00", "endpoint": "https://kvtest56m7lyhkxttu5o7cy6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:45:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:45:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtest56m7lyhkxttu5o7cy6", + "name": "KVTest56m7lyhkxttu5o7cy6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:32:16+00:00", "endpoint": "https://kvtest7gxwoslebimyurrpzo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:32:16+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:32:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtest7gxwoslebimyurrpzo", + "name": "KVTest7gxwoslebimyurrpzo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T11:47:50+00:00", "endpoint": "https://kvtesta5gfdkk3ofsqlz3axj.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T11:47:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T11:47:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6tafb7kmkszhmrkpiaqncvjdbzopdvao2unlvdouj4qwnswxhzvwhnqwtuvfhap5f/providers/Microsoft.AppConfiguration/configurationStores/kvtesta5gfdkk3ofsqlz3axj", + "name": "KVTesta5gfdkk3ofsqlz3axj", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:27+00:00", "endpoint": "https://kvtestaabkjvmmvryoyrcym4f23ipzwbr3il.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestaabkjvmmvryoyrcym4f23ipzwbr3il", + "name": "KVTestaabkjvmmvryoyrcym4f23ipzwbr3il", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:48+00:00", "endpoint": "https://kvtestazuhrmngjidjfiubou.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:48+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestazuhrmngjidjfiubou", + "name": "KVTestazuhrmngjidjfiubou", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:01+00:00", "endpoint": "https://kvtestblkljn3if2ed3lee4c.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu6kv5zqu66qjrcvxa7phtrzraaastvxrgb5ba5ksua3wgiaybmuxxco24istvbllk/providers/Microsoft.AppConfiguration/configurationStores/kvtestblkljn3if2ed3lee4c", + "name": "KVTestblkljn3if2ed3lee4c", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:58+00:00", "endpoint": "https://kvtestcncxmq2fygiiwpxlm5irfpslm6rv4y.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:58+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:58+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestcncxmq2fygiiwpxlm5irfpslm6rv4y", + "name": "KVTestcncxmq2fygiiwpxlm5irfpslm6rv4y", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:45+00:00", "endpoint": "https://kvtestctemdbzrufgk7gou63.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnsjj2m7spcrfqtj5d6xghazzzkbnunaevcb2w5d3aw7nsxyv5srgumrba3fxgc5fj/providers/Microsoft.AppConfiguration/configurationStores/kvtestctemdbzrufgk7gou63", + "name": "KVTestctemdbzrufgk7gou63", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://kvtestddruwaekub4w4vikfhmilya5pnoqp6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestddruwaekub4w4vikfhmilya5pnoqp6", + "name": "KVTestddruwaekub4w4vikfhmilya5pnoqp6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:45:36+00:00", "endpoint": "https://kvtestdzk745w7veqm4qhmg7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:45:36+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:45:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestdzk745w7veqm4qhmg7", + "name": "KVTestdzk745w7veqm4qhmg7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:54:25+00:00", "endpoint": "https://kvtestedguv5zz26ia6jl5j6.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:54:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:54:25+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestedguv5zz26ia6jl5j6", + "name": "KVTestedguv5zz26ia6jl5j6", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:22:10+00:00", "endpoint": "https://kvtestgypdqe3asrj2yppdaw.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:22:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:22:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestgypdqe3asrj2yppdaw", + "name": "KVTestgypdqe3asrj2yppdaw", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:38+00:00", "endpoint": "https://kvtesthhewfemq55gzr7f2ut.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyh2hpoaraulrpisivp7wvr6kewphm76xkiphd3smodzvjlevaaoetk2e5fmwkbvn6/providers/Microsoft.AppConfiguration/configurationStores/kvtesthhewfemq55gzr7f2ut", + "name": "KVTesthhewfemq55gzr7f2ut", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:13+00:00", "endpoint": "https://kvtesthtjrqiylsqskz3c6d5ejdr4mbl6buh.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesthtjrqiylsqskz3c6d5ejdr4mbl6buh", + "name": "KVTesthtjrqiylsqskz3c6d5ejdr4mbl6buh", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-11T12:57:03+00:00", "endpoint": "https://kvtestiaobbatslphjvsdvem.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:57:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:57:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgngwosihwuvyfcdzfp2vjsulqt7fl4vqupolm4lnvn7eojzu3kntls4upzts4b2mbd/providers/Microsoft.AppConfiguration/configurationStores/kvtestiaobbatslphjvsdvem", + "name": "KVTestiaobbatslphjvsdvem", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=3ZDdSsQwEIXfJYhXpmnr1mJhkbIIXlgEu971Jj%2bz3Wy3ScikRSx9d%2bMPuM%2fg5Zw5c4bvLMTAe3jWZkBSLeSxbvdvLanIMQSHFWMjN7yHEUxI%2bMfkIZF2ZDgJlF67oK1BVpaq4CK9oyUoRTcAkgoJ97TIZZaJshDitmTO21kr8MgaLb1FewhJ7dzOmoPuJ8%2b%2fopi8nNpgPeADd5rO8S7ut3mab2h8lGbXVzhot7cDmO0wB8CguRWCBzy742lGNcNI1ps%2fuBfzZM8qIkaR%2b7Huew89D6C%2bMyJw%2fdqQH3%2fD%2fQA%2bSkv320dHqu4%2fNNKRlayf"}' + headers: + cache-control: + - no-cache + content-length: + - '114080' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 31295fa5-815f-4220-84e2-d40cc2e8e231 + - 719220b5-a479-4335-a3f0-2a19f5e1066e + - f5388c77-50e1-4c2b-8580-c7328e2f2fe3 + - 43c9fea8-637b-491c-89ac-c32de36f146b + - 6d792b02-092c-4952-8f4f-153eab722979 + - 69fc4509-3011-458e-9399-571f02ebb3aa + - 28870683-e790-4ece-8818-fa1c709a1668 + - 32caf6b1-fdeb-42ef-98c1-131fbdda0232 + - 274ce555-3a84-4c5e-b3d8-bc0b585c625d + - f2b6a8be-7e77-4d1d-a43f-bdc414be87bb + - 9baebfc3-c407-4764-992b-c676f30f29b4 + - f0ca2a3d-5bcb-49de-aee2-f320f22451f8 + - c1cb0f5b-aee7-4f22-b135-e210501601ed + - 4e90990d-44f6-4f6c-8c23-66074c15d3d2 + - 0d6b2122-af28-4487-accb-a1c67866f162 + - b1addaba-4643-4164-8c82-b122454c1b17 + - 8bda82f7-b86b-4b7f-9ea0-150876f5c48e + - b208fe61-6713-45ed-afac-ded5aeafc898 + - 7e21770c-f836-4d3f-af34-e8cdb0d236aa + - b204bcbb-ebeb-4123-9ce2-fb1f32f9be75 + - 431d01b0-a346-4bfd-b3a8-33a183a2a4dd + - 780ad554-25c5-49e2-97a6-919c348953fb + - 1919f13e-ab05-46e2-91b6-19f5be8276c8 + - b60718a9-628f-4c10-a189-04d8c8ba77ff + - e5ccc2cf-c0cd-4143-95d8-3f09a49af6c4 + - 9984b831-3f67-42d8-88aa-e0a79aa6c8f3 + - c5d92537-c31e-460c-ac67-020429e01d57 + - 6a2e9dab-3e36-48c5-94a9-bcb8a6ec84c9 + - 261a3732-50df-43e2-8460-9527a741e84e + - 56c1c395-9511-47c1-977f-54331a8f10f7 + - a12ca207-d3f1-4776-8b73-789fe74986bc + - ec11d480-da49-47c4-9b57-5ab862ca046f + - a9eb5f25-a523-443a-ac7b-fa3fa252d715 + - a26a3294-9dd9-419f-a410-df9f67560a75 + - 6d7c5332-1014-4591-9429-e3c8272cb09c + - d720a354-4fb2-4181-bfe1-3efc4c4ebdc8 + - 9b6de0a2-ece2-47c5-b1eb-779c5135e28e + - 6b5cc300-87b1-44f6-8f1a-a7614353f343 + - ae39039c-19f3-4829-83e4-32dfbed09fb3 + - d9a98af7-073d-49db-8d90-486dc3e01d46 + - cec2d855-2c6f-4e81-a018-8833bef17198 + - ebc7430d-f6f2-409e-a07a-287cdf3024cf + - f4d0c71d-e0c1-43f4-b64f-37429e6f657f + - 0ccb0fe3-e99d-4b09-807d-32b5d5fd3f06 + - 33682615-15b8-45e6-95ae-bf4402fecf75 + - eb0b229b-7e77-4a31-9395-5321646ab9da + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 5B828ACD39664748843A324323C438A4 Ref B: MAA201060513029 Ref C: 2025-08-15T03:19:51Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=3ZDdSsQwEIXfJYhXpmnr1mJhkbIIXlgEu971Jj%2Bz3Wy3ScikRSx9d%2BMPuM/g5Zw5c4bvLMTAe3jWZkBSLeSxbvdvLanIMQSHFWMjN7yHEUxI%2BMfkIZF2ZDgJlF67oK1BVpaq4CK9oyUoRTcAkgoJ97TIZZaJshDitmTO21kr8MgaLb1FewhJ7dzOmoPuJ8%2B/opi8nNpgPeADd5rO8S7ut3mab2h8lGbXVzhot7cDmO0wB8CguRWCBzy742lGNcNI1ps/uBfzZM8qIkaR%2B7Huew89D6C%2BMyJw/dqQH3/D/QA%2BSkv320dHqu4/NNKRlayf + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:51+00:00", "endpoint": "https://kvtestihwc3syiqee5ah3iga.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:51+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestihwc3syiqee5ah3iga", + "name": "KVTestihwc3syiqee5ah3iga", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:13+00:00", "endpoint": "https://kvtestizmnigytm42qanhxha.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestizmnigytm42qanhxha", + "name": "KVTestizmnigytm42qanhxha", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:55:42+00:00", "endpoint": "https://kvtestkopv2uhhschtzb2e5n.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:55:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:55:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestkopv2uhhschtzb2e5n", + "name": "KVTestkopv2uhhschtzb2e5n", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://kvtestl2ormjtchf7btc3f3u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvhvtc3xrd7c3vvwzmfi4ufblyqdjqcnuenotltaz3gnpg6ixy5v4czw52bht6tnea/providers/Microsoft.AppConfiguration/configurationStores/kvtestl2ormjtchf7btc3f3u", + "name": "KVTestl2ormjtchf7btc3f3u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:50+00:00", "endpoint": "https://kvtestloxzjt7t3tfagqhl2ap6xxngz4wpgd.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestloxzjt7t3tfagqhl2ap6xxngz4wpgd", + "name": "KVTestloxzjt7t3tfagqhl2ap6xxngz4wpgd", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:51:15+00:00", "endpoint": "https://kvtesto5vmioemxphsuub3xx7r4sky45ni2f.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:51:15+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:51:15+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesto5vmioemxphsuub3xx7r4sky45ni2f", + "name": "KVTesto5vmioemxphsuub3xx7r4sky45ni2f", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:34:46+00:00", "endpoint": "https://kvtestp2kbuun66d6ps473pg7ysw3epzlwut.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:34:46+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:34:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestp2kbuun66d6ps473pg7ysw3epzlwut", + "name": "KVTestp2kbuun66d6ps473pg7ysw3epzlwut", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:09+00:00", "endpoint": "https://kvtestpj2t6uk6lvtsd7iun2vykrabrj5qjo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:09+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestpj2t6uk6lvtsd7iun2vykrabrj5qjo", + "name": "KVTestpj2t6uk6lvtsd7iun2vykrabrj5qjo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:53:34+00:00", "endpoint": "https://kvtestppk7lrbah7ynxlhe33.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:53:34+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:53:34+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestppk7lrbah7ynxlhe33", + "name": "KVTestppk7lrbah7ynxlhe33", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:43:27+00:00", "endpoint": "https://kvtestrsei3hg3nqsaujkzgg.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:43:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:43:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestrsei3hg3nqsaujkzgg", + "name": "KVTestrsei3hg3nqsaujkzgg", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:43+00:00", "endpoint": "https://kvtestsd77jfbv4d3uzcytfp.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg4rrldloh2p7oo6rzuoqwvws4cpfwypu6bzbhqkwdnn3rwkl4dafchtml6zrkztbm/providers/Microsoft.AppConfiguration/configurationStores/kvtestsd77jfbv4d3uzcytfp", + "name": "KVTestsd77jfbv4d3uzcytfp", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:38+00:00", "endpoint": "https://kvtesttptetw6qztfw3gv674.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtesttptetw6qztfw3gv674", + "name": "KVTesttptetw6qztfw3gv674", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:34:30+00:00", "endpoint": "https://kvtestuycl4et7tf5eb7lsdu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:34:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:34:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestuycl4et7tf5eb7lsdu", + "name": "KVTestuycl4et7tf5eb7lsdu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:50:01+00:00", "endpoint": "https://kvtestv3dtl6bonwids7ib5x.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:50:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:50:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestv3dtl6bonwids7ib5x", + "name": "KVTestv3dtl6bonwids7ib5x", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:24:19+00:00", "endpoint": "https://kvtestycmo2q63cxt6vvf67r.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:24:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:24:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/kvtestycmo2q63cxt6vvf67r", + "name": "KVTestycmo2q63cxt6vvf67r", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-06-20T02:14:07+00:00", "endpoint": "https://linglingye-appconfig-quickstart.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-06-20T02:14:07+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-20T02:14:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/linglingye-rg/providers/Microsoft.AppConfiguration/configurationStores/linglingye-appconfig-quickstart", + "name": "linglingye-appconfig-quickstart", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-08T20:43:45+00:00", "endpoint": "https://mbtestappconfig.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-08T20:43:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-09T22:26:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mb_rnd/providers/Microsoft.AppConfiguration/configurationStores/mbtestappconfig", + "name": "mbTestAppConfig", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-05T13:16:53+00:00", "endpoint": "https://mgich-agent-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-05T13:16:53+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T13:16:53+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-agent-demo", + "name": "mgich-agent-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-07-20T13:49:51+00:00", "endpoint": "https://mgich-demo-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-demo-store/privateEndpointConnections/mgich-demo-privatendpoint", + "name": "mgich-demo-privatendpoint", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.Network/privateEndpoints/mgich-demo-privatendpoint"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-07-20T13:49:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-29T09:44:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test-2/providers/Microsoft.AppConfiguration/configurationStores/mgich-demo-store", + "name": "Mgich-Demo-store", "tags": {"Tag1": "Value1"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-28T08:17:37+00:00", "endpoint": "https://mgich-dev-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-28T08:17:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-28T08:17:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-dev-store", + "name": "mgich-dev-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "userAssignedIdentities": + {}, "principalId": "7262de24-6e9f-4834-9f65-b1cb524e252e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-08-11T21:32:20+00:00", + "endpoint": "https://mgich-ff.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": null}}, "privateEndpointConnections": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-ff/privateEndpointConnections/mgich", + "name": "mgich", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.Network/privateEndpoints/mgich"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T21:32:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-06-26T15:07:37+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-ff", + "name": "Mgich-ff", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-04-27T23:35:45+00:00", "endpoint": "https://mgich-largestoretest-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-04-27T23:35:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-11T12:53:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-largestoretest-1", + "name": "Mgich-largestoretest-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-02-10T07:08:17+00:00", "endpoint": "https://mgich-readerstore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-02-10T07:08:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-26T14:56:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-readerstore", + "name": "mgich-readerstore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "8123be57-97f1-4182-b1b1-f6af700545c4", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-10-04T16:57:29+00:00", + "endpoint": "https://mgich-stage-1.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": null}}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-04T16:57:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-04T17:38:39+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-stage-1", + "name": "mgich-stage-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-07-01T10:23:28+00:00", "endpoint": "https://mgich-store-no-experiments.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-07-01T10:23:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T17:05:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-store-no-experiments", + "name": "mgich-store-no-experiments", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-18T09:11:22+00:00", "endpoint": "https://mgich-store-pe.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-18T09:11:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-18T09:11:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-store-pe", + "name": "mgich-store-pe", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-04T18:17:49+00:00", "endpoint": "https://mgich-test2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-04T18:17:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-04T18:17:49+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-test2", + "name": "mgich-test2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mgich-userassignedIdentity": + {"principalId": "fe7ce57e-8668-4bc2-860c-a55b5ed3c20c", "clientId": "d272d921-c6fa-4394-889a-acb85a9de520"}, + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Mgich-Test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mgich-user2identity": + {"principalId": "d0c6a0b5-d9e2-4936-99e1-93f83c03fba5", "clientId": "246f2df7-bc14-43b6-bbab-292e9aa837c5"}}, + "principalId": "1faff273-6296-453e-8213-93e36511bafd", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2021-11-24T08:29:23+00:00", + "endpoint": "https://mgich-teststore.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://mgich-test-keyvault.vault.azure.net/keys/EncryptionKey", + "identityClientId": "d272d921-c6fa-4394-889a-acb85a9de520"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Pass-through", "privateLinkDelegation": "Enabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2021-11-24T08:29:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-07-30T12:33:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore", + "name": "Mgich-teststore", "tags": {"Tag1": "value 1"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-17T12:28:40+00:00", "endpoint": "https://mgich-teststore-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-17T12:28:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-11T13:06:46+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore-1", + "name": "mgich-teststore-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-14T09:20:39+00:00", "endpoint": "https://mgich-teststore-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-14T09:20:39+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-28T14:34:36+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore-3", + "name": "mgich-teststore-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-10T19:22:51+00:00", "endpoint": "https://mgich-teststore4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-10T19:22:51+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-10-03T09:10:52+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststore4", + "name": "mgich-teststore4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-02T20:20:55+00:00", "endpoint": "https://mgich-teststsore-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-02T20:20:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-21T18:13:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mgich-test/providers/Microsoft.AppConfiguration/configurationStores/mgich-teststsore-3", + "name": "mgich-teststsore-3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "a1c20165-034a-4ba2-8061-e0d4d16f24ae", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-20T22:42:06+00:00", + "endpoint": "https://mgmttest72er3mgxhdoinaqa.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnpau7zjt464gtz2wleqi36hu74ql74n5vvw35zhk7oaljwlxgx4oeph77eqifl5o5/providers/Microsoft.AppConfiguration/configurationStores/mgmttest72er3mgxhdoinaqa", + "name": "MgmtTest72er3mgxhdoinaqa", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "47a9f6ab-3291-480b-b56d-1e14e36050ea", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-03-19T19:55:12+00:00", + "endpoint": "https://mgmttestc7g3l35dzryuxxgvp4lglc5dizmw.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestc7g3l35dzryuxxgvp4lglc5dizmw", + "name": "MgmtTestc7g3l35dzryuxxgvp4lglc5dizmw", "tags": {"key": "value"}}, + {"type": "Microsoft.AppConfiguration/configurationStores", "location": "eastus", + "identity": {"type": "SystemAssigned", "principalId": "044952b4-d72c-472c-abf1-211644477cf9", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "properties": {"provisioningState": + "Succeeded", "creationDate": "2025-07-10T04:40:17+00:00", "endpoint": "https://mgmttestdceucmwowzkwqmkq.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:40:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:40:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestdceucmwowzkwqmkq", + "name": "MgmtTestdceucmwowzkwqmkq", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c635cc37-a672-4b57-bb8c-97c563ef1faa", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T05:32:22+00:00", + "endpoint": "https://mgmttestsmrvmso36npc46q2.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T05:32:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T05:32:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttestsmrvmso36npc46q2", + "name": "MgmtTestsmrvmso36npc46q2", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "c04393c4-b4ca-425c-ac71-d6fb8fd0e8c8", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-07-10T03:01:00+00:00", + "endpoint": "https://mgmttesttu422dgcjrdktv2i.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:01:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:01:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/mgmttesttu422dgcjrdktv2i", + "name": "MgmtTesttu422dgcjrdktv2i", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "029554f7-2d78-4e89-b35e-0def16f0607e", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2024-12-03T08:41:56+00:00", + "endpoint": "https://mgmttesttyxczkyhxc6obdc3.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:41:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:43+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rga7cq7pqntyql7xxdl7ybrm5fu4ghzzzka7tz73vc26jiwpbnwrsibgsfkq7abl7dl/providers/Microsoft.AppConfiguration/configurationStores/mgmttesttyxczkyhxc6obdc3", + "name": "MgmtTesttyxczkyhxc6obdc3", "tags": {"Env": "Prod"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-13T21:11:18+00:00", "endpoint": "https://my-app-config-test-4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-13T21:11:18+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-13T21:11:18+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testresourcegroup/providers/Microsoft.AppConfiguration/configurationStores/my-app-config-test-4", + "name": "my-app-config-test-4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:47:59+00:00", "endpoint": "https://namingconventiontest5i2i.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:47:59+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:47:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontest5i2i", + "name": "NamingConventionTest5i2i", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:44+00:00", "endpoint": "https://namingconventiontestcmrm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestcmrm", + "name": "NamingConventionTestcmrm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:04+00:00", "endpoint": "https://namingconventiontestf6wx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdufzxonazjyfqql7zhvtnmptvqxvyghhi3piqf3w6fqffjd6elyw54aufbq4nohxe/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestf6wx", + "name": "NamingConventionTestf6wx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:55:14+00:00", "endpoint": "https://namingconventiontestr4z27s6inps2qahi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:55:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:55:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestr4z27s6inps2qahi", + "name": "NamingConventionTestr4z27s6inps2qahi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:57:50+00:00", "endpoint": "https://namingconventiontestzmts.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:57:50+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:57:50+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/namingconventiontestzmts", + "name": "NamingConventionTestzmts", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:10+00:00", "endpoint": "https://newfmimport6jvm63gclqtfi.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimport6jvm63gclqtfi", + "name": "NewFmImport6jvm63gclqtfi", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:28+00:00", "endpoint": "https://newfmimport7breg65bpfkmk.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:28+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:28+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimport7breg65bpfkmk", + "name": "NewFmImport7breg65bpfkmk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:33:42+00:00", "endpoint": "https://newfmimportcbirfdrxwcazblccfrcc56tr3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:33:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:33:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportcbirfdrxwcazblccfrcc56tr3", + "name": "NewFmImportcbirfdrxwcazblccfrcc56tr3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:13+00:00", "endpoint": "https://newfmimportifwskvg7yatnll65fmcw4lbvu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportifwskvg7yatnll65fmcw4lbvu", + "name": "NewFmImportifwskvg7yatnll65fmcw4lbvu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:23+00:00", "endpoint": "https://newfmimportiqle44dc5w75t.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:23+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportiqle44dc5w75t", + "name": "NewFmImportiqle44dc5w75t", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:56:21+00:00", "endpoint": "https://newfmimportycrjzhir3yc2jvaw5gj73xsh3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:56:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:56:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/newfmimportycrjzhir3yc2jvaw5gj73xsh3", + "name": "NewFmImportycrjzhir3yc2jvaw5gj73xsh3", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned, UserAssigned", + "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cwanjau-managedidentity": + {"principalId": "34d63f14-3b42-414e-ac13-8f59315108ab", "clientId": "8285bab3-5abe-416a-b208-56396cc26cf2"}}, + "principalId": "2ace8798-912e-4525-8706-b2ea02068ac0", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-11-09T07:55:32+00:00", + "endpoint": "https://newstore.azconfig.io", "encryption": {"keyVaultProperties": + null}, "privateEndpointConnections": [], "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + true, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2022-11-09T07:55:32+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-20T17:32:25+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/newstore", + "name": "NewStore", "tags": {"new ": "tag"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-08-07T17:33:44+00:00", "endpoint": "https://pipelinetask-teststore.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-08-07T17:33:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-08-07T17:33:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pipelinetask-canarytest/providers/Microsoft.AppConfiguration/configurationStores/pipelinetask-teststore", + "name": "pipelinetask-teststore", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-06T17:03:43+00:00", "endpoint": "https://portal-test.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-06T17:03:43+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T01:05:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kipackjeong-rg-1/providers/Microsoft.AppConfiguration/configurationStores/portal-test", + "name": "portal-test", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:40+00:00", "endpoint": "https://pubnetworknull26cngh42hn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:40+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:40+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5zneawsaijjrfwkpifdvbui3mpjvvozsommbvv2fvmzfoypa2gtwxcmwba2em7tm/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknull26cngh42hn", + "name": "PubNetworkNull26cngh42hn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:58+00:00", "endpoint": "https://pubnetworknullfgy4ldwvco.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T03:50:58+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T03:51:36+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknullfgy4ldwvco", + "name": "PubNetworkNullfgy4ldwvco", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:42:29+00:00", "endpoint": "https://pubnetworknulllk4mio7jtn.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T04:42:29+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T04:43:09+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknulllk4mio7jtn", + "name": "PubNetworkNulllk4mio7jtn", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:46+00:00", "endpoint": "https://pubnetworknullu2jkrdwwh23ireje5pi64g.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-03-19T19:56:46+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-19T19:57:30+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworknullu2jkrdwwh23ireje5pi64g", + "name": "PubNetworkNullu2jkrdwwh23ireje5pi64g", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:41:50+00:00", "endpoint": "https://pubnetworktrueawirkzjx5u.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T04:41:50+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T04:41:50+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktrueawirkzjx5u", + "name": "PubNetworkTrueawirkzjx5u", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:50:18+00:00", "endpoint": "https://pubnetworktruelryl4o66fv.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-07-10T03:50:18+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-07-10T03:50:18+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktruelryl4o66fv", + "name": "PubNetworkTruelryl4o66fv", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:56:03+00:00", "endpoint": "https://pubnetworktrueqinrxqnezhqbvgsjjmoug5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2025-03-19T19:56:03+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2025-03-19T19:56:03+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktrueqinrxqnezhqbvgsjjmoug5", + "name": "PubNetworkTrueqinrxqnezhqbvgsjjmoug5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:41:57+00:00", "endpoint": "https://pubnetworktruet6yhv5rp5h.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-12-03T08:41:57+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-12-03T08:41:57+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp5zneawsaijjrfwkpifdvbui3mpjvvozsommbvv2fvmzfoypa2gtwxcmwba2em7tm/providers/Microsoft.AppConfiguration/configurationStores/pubnetworktruet6yhv5rp5h", + "name": "PubNetworkTruet6yhv5rp5h", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "SystemAssigned", "principalId": + "493023af-0d46-48de-a070-eef831383228", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2025-02-11T12:40:56+00:00", + "endpoint": "https://replicastored2uyjofor3ac.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-11T12:40:56+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-11T12:40:56+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbkeprji7tmcxwyspsy2tof6gcb5zs6qod2fnn4tdtnbofbo3zzvokji5siqpbx3fv/providers/Microsoft.AppConfiguration/configurationStores/replicastored2uyjofor3ac", + "name": "ReplicaStored2uyjofor3ac", "tags": {"key": "value"}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-04-10T23:14:57+00:00", "endpoint": "https://rossgrambo-app-config-backup.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-04-10T23:14:57+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-04-10T23:35:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-app-config-backup", + "name": "rossgrambo-app-config-backup", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-03-20T22:16:45+00:00", "endpoint": "https://rossgrambo-app-configuration.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-03-20T22:16:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-11T00:24:24+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-app-configuration", + "name": "rossgrambo-app-configuration", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-08T18:53:19+00:00", "endpoint": "https://rossgrambo-flag-migration-testing.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-08T18:53:19+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-08T18:53:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-app-config-testing/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-flag-migration-testing", + "name": "rossgrambo-flag-migration-testing", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-19T02:11:08+00:00", "endpoint": "https://rossgrambo-hackathon.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-19T02:11:08+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-19T02:11:08+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-hackathon/providers/Microsoft.AppConfiguration/configurationStores/rossgrambo-hackathon", + "name": "rossgrambo-hackathon", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-10-10T22:48:21+00:00", "endpoint": "https://samiconfigs.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-10-10T22:48:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-11-04T18:58:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/samisadfa-rg/providers/Microsoft.AppConfiguration/configurationStores/samiconfigs", + "name": "samiconfigs", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-01T18:44:00+00:00", "endpoint": "https://sdfsafdfdsffsf-albertofori.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-01T18:44:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-01T18:44:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/sdfsafdfdsffsf-albertofori", + "name": "sdfsafdfdsffsf-albertofori", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-04-06T23:31:37+00:00", "endpoint": "https://softdelete-demo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T23:31:37+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-06-15T06:08:10+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo", + "name": "softdelete-demo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/softdelete-demo-identity-2": + {"principalId": "c3b06559-ac00-409d-a3ec-183f811cfd0d", "clientId": "e6304037-2130-4a66-a0b5-0cef9e5fef38"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-06T22:35:49+00:00", + "endpoint": "https://softdelete-demo-cmk.azconfig.io", "encryption": {"keyVaultProperties": + {"keyIdentifier": "https://softdelete-demo-keyvault.vault.azure.net/keys/key", + "identityClientId": "e6304037-2130-4a66-a0b5-0cef9e5fef38"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T22:35:49+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-07T23:34:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo-cmk", + "name": "softdelete-demo-cmk", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/softdelete-demo-identity": + {"principalId": "d0286683-fe54-4978-b632-4879b57da219", "clientId": "e557af90-eee7-425b-9667-56b1faaaa184"}}}, + "properties": {"provisioningState": "Succeeded", "creationDate": "2022-04-06T23:32:42+00:00", + "endpoint": "https://softdelete-demo-purge-protection.azconfig.io", "encryption": + {"keyVaultProperties": {"keyIdentifier": "https://softdelete-demo-keyvault.vault.azure.net/keys/key", + "identityClientId": "e557af90-eee7-425b-9667-56b1faaaa184"}}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-04-06T23:32:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-04-06T23:33:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-demo-purge-protection", + "name": "softdelete-demo-purge-protection", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:16:25+00:00", "endpoint": "https://softdelete-retention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:16:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-14T23:15:26+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-retention", + "name": "softdelete-retention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:17:09+00:00", "endpoint": "https://softdelete-retention2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:17:09+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T05:18:59+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/softdelete-retention2", + "name": "softdelete-retention2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:38:47+00:00", "endpoint": "https://source4w3kjzil5tkygz7f33.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:38:47+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:38:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source4w3kjzil5tkygz7f33", + "name": "Source4w3kjzil5tkygz7f33", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-08-14T05:51:17+00:00", "endpoint": "https://source4zg3mwqbsl6uidbigf.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-08-14T05:51:17+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-14T05:51:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source4zg3mwqbsl6uidbigf", + "name": "Source4zg3mwqbsl6uidbigf", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:49:30+00:00", "endpoint": "https://source5y7wpvryybmlgn255k.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:49:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:49:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/source5y7wpvryybmlgn255k", + "name": "Source5y7wpvryybmlgn255k", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-01-29T23:28:22+00:00", "endpoint": "https://source756e3z4lxwuqzamkys.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-01-29T23:28:22+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-01-29T23:28:22+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtbmculosotxi5tvycr3ucsvrlgjvhqhtuqxxp5zjy4l3uns3dflynpwxjhqy2lti2/providers/Microsoft.AppConfiguration/configurationStores/source756e3z4lxwuqzamkys", + "name": "Source756e3z4lxwuqzamkys", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:00:41+00:00", "endpoint": "https://source7tkscrlyge2z2dwfnt.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:00:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:00:41+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzsjv5ucgfl5xb3rkxbfhwzw2l663dsuksodvay6hol3lrqlffhbimwua3mxqneoxp/providers/Microsoft.AppConfiguration/configurationStores/source7tkscrlyge2z2dwfnt", + "name": "Source7tkscrlyge2z2dwfnt", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:52:14+00:00", "endpoint": "https://sourcebonjncplltnwyxi3wxtbzajj3qudp7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:52:14+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:52:14+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcebonjncplltnwyxi3wxtbzajj3qudp7", + "name": "Sourcebonjncplltnwyxi3wxtbzajj3qudp7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:59:30+00:00", "endpoint": "https://sourceevcycu7vqqrwldss2d.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:59:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:59:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceevcycu7vqqrwldss2d", + "name": "Sourceevcycu7vqqrwldss2d", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-12-03T08:42:01+00:00", "endpoint": "https://sourceiawig3smul3natozz7.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-12-03T08:42:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-12-03T08:42:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwyttwmni2xmbsaxrtp64sja6rdh2ocxcprrc5pwdogqijazx7f4vhljo5qfanoryn/providers/Microsoft.AppConfiguration/configurationStores/sourceiawig3smul3natozz7", + "name": "Sourceiawig3smul3natozz7", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:44:38+00:00", "endpoint": "https://sourcesarqiu3ulixdcvfmne.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:44:38+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:44:38+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcesarqiu3ulixdcvfmne", + "name": "Sourcesarqiu3ulixdcvfmne", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:00+00:00", "endpoint": "https://sourcevsycmtag5msdxrntg4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:00+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:00+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguznozpjynfgaebftsnnrdc52h2scgoorpr6unkhktfxrcwsulo6qvsxb6b6j2jkfn/providers/Microsoft.AppConfiguration/configurationStores/sourcevsycmtag5msdxrntg4", + "name": "Sourcevsycmtag5msdxrntg4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:13+00:00", "endpoint": "https://sourcewh3zdqwqjr2ycwla34mzr57iwkd646.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:13+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewh3zdqwqjr2ycwla34mzr57iwkd646", + "name": "Sourcewh3zdqwqjr2ycwla34mzr57iwkd646", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:23:21+00:00", "endpoint": "https://sourcewrcreicjxj7w2yk2kl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:23:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:23:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewrcreicjxj7w2yk2kl", + "name": "Sourcewrcreicjxj7w2yk2kl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:54:42+00:00", "endpoint": "https://sourcewxcru6myjz22xt3cry.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:54:42+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:54:42+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcewxcru6myjz22xt3cry", + "name": "Sourcewxcru6myjz22xt3cry", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://sourcexi35d6xknwvlpgfjdcjpfm4tbisikl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcexi35d6xknwvlpgfjdcjpfm4tbisikl", + "name": "Sourcexi35d6xknwvlpgfjdcjpfm4tbisikl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:04+00:00", "endpoint": "https://sourceykdeluxupgutssmtp4s2ndonnpmrfx.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceykdeluxupgutssmtp4s2ndonnpmrfx", + "name": "Sourceykdeluxupgutssmtp4s2ndonnpmrfx", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:33:27+00:00", "endpoint": "https://sourceyxduf5goewbviumeya.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:33:27+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:33:27+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourceyxduf5goewbviumeya", + "name": "Sourceyxduf5goewbviumeya", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-02-14T14:44:25+00:00", "endpoint": "https://southcentralus-test-store.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-02-14T14:44:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-01-15T15:17:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/richardmuniu-appcfg-test/providers/Microsoft.AppConfiguration/configurationStores/southcentralus-test-store", + "name": "southcentralus-test-store", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-08-11T16:55:25+00:00", "endpoint": "https://spring-geo.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-08-11T16:55:25+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-08-18T22:19:55+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/spring-geo", + "name": "Spring-Geo", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-19T19:54:03+00:00", "endpoint": "https://strictimporttest3vthtdkmhnlsf2jhpwqm.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-19T19:54:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-19T19:54:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttest3vthtdkmhnlsf2jhpwqm", + "name": "StrictImportTest3vthtdkmhnlsf2jhpwqm", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-12T08:06:01+00:00", "endpoint": "https://strictimporttesta5qjw7z4.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-12T08:06:01+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-12T08:06:01+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiclp5jbwimqqqoxl5bbqjkggleqcwdnipdk4do7nmywdhkiwb6gnm6h3esjl6ekmb/providers/Microsoft.AppConfiguration/configurationStores/strictimporttesta5qjw7z4", + "name": "StrictImportTesta5qjw7z4", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T03:47:05+00:00", "endpoint": "https://strictimporttestczhpt6di.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T03:47:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T03:47:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestczhpt6di", + "name": "StrictImportTestczhpt6di", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T04:36:04+00:00", "endpoint": "https://strictimporttestdwyif42s.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T04:36:04+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T04:36:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestdwyif42s", + "name": "StrictImportTestdwyif42s", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-20T22:42:05+00:00", "endpoint": "https://strictimporttestj4kovvpa.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-20T22:42:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-20T22:42:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg43nb3b6jwngiura5rclypvjmdx62odg4tdxrdaytutt75yx2quuszpfdvp57kadz7/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestj4kovvpa", + "name": "StrictImportTestj4kovvpa", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:32:30+00:00", "endpoint": "https://strictimporttestsagt6n6f6guarkkvv4ul.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:32:30+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:32:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestsagt6n6f6guarkkvv4ul", + "name": "StrictImportTestsagt6n6f6guarkkvv4ul", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-18T13:55:03+00:00", "endpoint": "https://strictimporttestt36qwioiuroazvvivyy5.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-18T13:55:03+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-03-18T13:55:03+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestt36qwioiuroazvvivyy5", + "name": "StrictImportTestt36qwioiuroazvvivyy5", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-07-10T02:57:02+00:00", "endpoint": "https://strictimporttestvbzh72sl.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 1, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-07-10T02:57:02+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-07-10T02:57:02+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/strictimporttestvbzh72sl", + "name": "StrictImportTestvbzh72sl", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T20:57:06+00:00", "endpoint": "https://test-azconfig-net.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T20:57:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T20:57:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-net", + "name": "test-azconfig-net", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZDdSsQwEIXfJYhXpmnr1mJhkSKCFxbBXe96k5%2fZGmqTMJkusqXvbnQFfQUv58z5ZjhnYQ4%2b6Mm6MbJmYQ%2ftbv%2b6Yw17IwqxEWKSTg4wgaNMnmaETPtJxFlFjTaQ9S6KujaVVPkNr8EYvgHQXGm45VWpi0LVlVLXtQjoj9YARtFZjT76A2VtCPfeHewwo%2fw6JfTfaUceId7JYPkxcWm%2fLfNyw9OjvLi8iKMNez%2bC2xJE4vJ0hrkDYuvVb6pn9%2bjfTcqWRIlTOwwIgyQw33BK2r507OzvJI6ASVr6nyJ61vT%2fuoqerWz9BA%3d%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '110916' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:19:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 695e3253-1a9b-4500-b24b-c3895b674bbb + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C6F962009F14406892C8801FC830D7E7 Ref B: MAA201060514033 Ref C: 2025-08-15T03:19:55Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZDdSsQwEIXfJYhXpmnr1mJhkSKCFxbBXe96k5/ZGmqTMJkusqXvbnQFfQUv58z5ZjhnYQ4%2B6Mm6MbJmYQ/tbv%2B6Yw17IwqxEWKSTg4wgaNMnmaETPtJxFlFjTaQ9S6KujaVVPkNr8EYvgHQXGm45VWpi0LVlVLXtQjoj9YARtFZjT76A2VtCPfeHewwo/w6JfTfaUceId7JYPkxcWm/LfNyw9OjvLi8iKMNez%2BC2xJE4vJ0hrkDYuvVb6pn9%2BjfTcqWRIlTOwwIgyQw33BK2r507OzvJI6ASVr6nyJ61vT/uoqerWz9BA%3D%3D + response: + body: + string: '{"value": [{"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T20:57:06+00:00", "endpoint": "https://test-azconfig-net-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T20:57:06+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T20:57:06+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-net-provider", + "name": "test-azconfig-net-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T21:01:29+00:00", "endpoint": "https://test-azconfig-python.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T21:01:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T21:01:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-python", + "name": "test-azconfig-python", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-07-24T21:01:29+00:00", "endpoint": "https://test-azconfig-python-provider.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-07-24T21:01:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-07-24T21:01:30+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal-python-provider-test/providers/Microsoft.AppConfiguration/configurationStores/test-azconfig-python-provider", + "name": "test-azconfig-python-provider", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2022-03-18T03:11:21+00:00", "endpoint": "https://test-deletion.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2022-03-18T03:11:21+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2022-03-18T03:11:23+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/richardmuniu-appcfg-test/providers/Microsoft.AppConfiguration/configurationStores/test-deletion", + "name": "test-deletion", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2023-11-09T22:36:24+00:00", "endpoint": "https://test-notification.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2023-11-09T22:36:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2023-11-09T23:17:12+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/test-notification", + "name": "test-notification", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-28T11:18:48+00:00", "endpoint": "https://test-revision-retention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-28T11:18:48+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T14:41:04+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/test-revision-retention", + "name": "test-revision-retention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-05-10T21:04:55+00:00", "endpoint": "https://test-template.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-05-10T21:04:55+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-05-10T21:04:57+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/haiyiwen-dev/providers/Microsoft.AppConfiguration/configurationStores/test-template", + "name": "test-template", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-27T17:01:21+00:00", "endpoint": "https://testapp-1001.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "publicNetworkAccess": "Disabled", "disableLocalAuth": false, "softDeleteRetentionInDays": + 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": 2592000, "enablePurgeProtection": + false, "dataPlaneProxy": {"authenticationMode": "Local", "privateLinkDelegation": + "Disabled"}}, "sku": {"name": "standard"}, "systemData": {"createdBy": "test@example.com", + "createdByType": "User", "createdAt": "2024-09-27T17:01:21+00:00", "lastModifiedBy": + "test@example.com", "lastModifiedByType": "User", "lastModifiedAt": "2024-09-27T17:01:21+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-1001", + "name": "testapp-1001", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-09-27T16:59:45+00:00", "endpoint": "https://testapp-8778.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-8778/privateEndpointConnections/myconnection", + "name": "myconnection", "type": "Microsoft.AppConfiguration/configurationStores/privateEndpointConnections", + "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-AppConfiguration-6086/providers/Microsoft.Network/privateEndpoints/endpointxyz7285"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": + "Auto-Approved", "actionsRequired": "None"}}}], "publicNetworkAccess": "Disabled", + "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-09-27T16:59:45+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-09-27T16:59:45+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-appconfiguration-6086/providers/Microsoft.AppConfiguration/configurationStores/testapp-8778", + "name": "testapp-8778", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T09:32:10+00:00", "endpoint": "https://testbug.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + true, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T09:32:10+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-08-05T13:16:07+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testbug", + "name": "testBug", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-03-13T17:58:05+00:00", "endpoint": "https://testcopilot.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "premium"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-03-13T17:58:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:49:16+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testcopilot", + "name": "testCopilot", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-15T06:19:24+00:00", "endpoint": "https://testdev.azconfig.io", "encryption": + {"keyVaultProperties": null}, "privateEndpointConnections": null, "disableLocalAuth": + false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 172800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-15T06:19:24+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-06-25T08:00:17+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testdev", + "name": "testdev", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-25T21:04:05+00:00", "endpoint": "https://testdevsku.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-25T21:04:05+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-25T21:04:05+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/albertoforirg/providers/Microsoft.AppConfiguration/configurationStores/testdevsku", + "name": "testdevsku", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-04-23T07:57:12+00:00", "endpoint": "https://testrevisionretention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "developer"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-04-23T07:57:12+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-04-23T07:58:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testrevisionretention", + "name": "testrevisionretention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-02-24T22:30:44+00:00", "endpoint": "https://teststestestestes.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-02-24T22:30:44+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-02-24T22:30:44+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rossgrambo-hackathon/providers/Microsoft.AppConfiguration/configurationStores/teststestestestes", + "name": "teststestestestes", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T07:43:13+00:00", "endpoint": "https://testtkeyvalueretention.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T07:43:13+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:51:32+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testtkeyvalueretention", + "name": "testtkeyvalueretention", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2025-05-07T07:29:41+00:00", "endpoint": "https://testuhyvu.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 691200, "enablePurgeProtection": true, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2025-05-07T07:29:41+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2025-05-07T08:45:19+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cwanjau-test/providers/Microsoft.AppConfiguration/configurationStores/testuhyvu", + "name": "testuhyvu", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2019-03-13T19:25:01+00:00", "endpoint": "https://webscoutscantarget.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 0, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 604800, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "free"}, "systemData": + {"createdBy": null, "createdByType": null, "createdAt": "2019-03-13T19:25:01+00:00", + "lastModifiedBy": null, "lastModifiedByType": null, "lastModifiedAt": "2019-03-13T19:25:01+00:00"}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/webscoutscantarget", + "name": "WebScoutScanTarget", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T05:21:32+00:00", "endpoint": "https://xuxu-sd-1.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T05:21:32+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-03-11T07:03:47+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-1", + "name": "xuxu-sd-1", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T21:37:20+00:00", "endpoint": "https://xuxu-sd-2.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 7, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T21:37:20+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T21:37:21+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-2", + "name": "xuxu-sd-2", "tags": {}}, {"type": "Microsoft.AppConfiguration/configurationStores", + "location": "eastus", "properties": {"provisioningState": "Succeeded", "creationDate": + "2024-02-26T21:41:29+00:00", "endpoint": "https://xuxu-sd-3.azconfig.io", + "encryption": {"keyVaultProperties": null}, "privateEndpointConnections": + null, "disableLocalAuth": false, "softDeleteRetentionInDays": 5, "defaultKeyValueRevisionRetentionPeriodInSeconds": + 2592000, "enablePurgeProtection": false, "dataPlaneProxy": {"authenticationMode": + "Local", "privateLinkDelegation": "Disabled"}}, "sku": {"name": "standard"}, + "systemData": {"createdBy": "test@example.com", "createdByType": "User", "createdAt": + "2024-02-26T21:41:29+00:00", "lastModifiedBy": "test@example.com", "lastModifiedByType": + "User", "lastModifiedAt": "2024-02-26T21:42:35+00:00"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-sd-3", + "name": "xuxu-sd-3", "tags": {}}], "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&%24skiptoken=1ZDdSsQwEIXfJYhXpmm7W4OFRYoIXlgEu971Jj%2bzNdQmYZIuxdJ3N%2f6AvoKXc%2bacGb6zEgtLfDR2DKReyX3THV86UpPXGH2oGZuEFQNMYGMm3meETLmJhVkGhcZH42xgnOtKyPyactCa7gEUlQpuaFWqopC8knLHmUd3NhowsNYodMGdYtZ4f%2bfsyQwzis9TTP2duugQwq3whp5TLu0PZV7uaXqUF5cXYTT%2b6Eawh2VeZho03ZHt6pfmyT64N52YkihwaoYBYRAR9FcoETbPLfn2twJHwCSt%2fU8BPan7f1lBTzayfQA%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '22507' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:20:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - abcaa01f-9266-45b1-9bb9-10921aae9a61 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: BF11A2F68E8E4D838454F42CA833DF69 Ref B: MAA201060516029 Ref C: 2025-08-15T03:19:58Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2024-06-01&$skiptoken=1ZDdSsQwEIXfJYhXpmm7W4OFRYoIXlgEu971Jj%2BzNdQmYZIuxdJ3N/6AvoKXc%2BacGb6zEgtLfDR2DKReyX3THV86UpPXGH2oGZuEFQNMYGMm3meETLmJhVkGhcZH42xgnOtKyPyactCa7gEUlQpuaFWqopC8knLHmUd3NhowsNYodMGdYtZ4f%2BfsyQwzis9TTP2duugQwq3whp5TLu0PZV7uaXqUF5cXYTT%2B6Eawh2VeZho03ZHt6pfmyT64N52YkihwaoYBYRAR9FcoETbPLfn2twJHwCSt/U8BPan7f1lBTzayfQA%3D + response: + body: + string: '{"value": []}' + headers: + cache-control: + - no-cache + content-length: + - '13' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:20:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 0b3e0f9c-7a3d-4c84-a605-35fb71b804c8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: C99EF90F236548A8A1054FBBD04C463B Ref B: MAA201060515033 Ref C: 2025-08-15T03:20:00Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -s --aks-cluster --configmap-name --configmap-namespace --label -y + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/ConfigMapImportTest000002/listKeys?api-version=2024-06-01 + response: + body: + string: '{"value": [{"id": "sanitized_id1", "name": "Primary", "value": "sanitized_secret1", + "connectionString": "Endpoint=https://configmapimporttest5eotn.azconfig.io;Id=sanitized_id1;Secret=sanitized_secret1", + "lastModified": "2025-08-15T03:11:28+00:00", "readOnly": false}, {"id": "sanitized_id2", + "name": "Secondary", "value": "sanitized_secret2", "connectionString": "Endpoint=https://configmapimporttest5eotn.azconfig.io;Id=sanitized_id2;Secret=sanitized_secret2", + "lastModified": "2025-08-15T03:11:28+00:00", "readOnly": false}, {"id": "sanitized_id3", + "name": "Primary Read Only", "value": "sanitized_secret3", "connectionString": + "Endpoint=https://configmapimporttest5eotn.azconfig.io;Id=sanitized_id3;Secret=sanitized_secret3", + "lastModified": "2025-08-15T03:11:28+00:00", "readOnly": true}, {"id": "sanitized_id4", + "name": "Secondary Read Only", "value": "sanitized_secret4", "connectionString": + "Endpoint=https://configmapimporttest5eotn.azconfig.io;Id=sanitized_id4;Secret=sanitized_secret4", + "lastModified": "2025-08-15T03:11:28+00:00", "readOnly": true}], "nextLink": + null}' + headers: + cache-control: + - no-cache + content-length: + - '1079' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Aug 2025 03:20:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/f6154225-1361-4e98-b5be-19cb5790431d + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 08C323E4E7DC4C94BCA2481D63435517 Ref B: MAA201060513023 Ref C: 2025-08-15T03:20:03Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - --output + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003?api-version=2025-05-01 + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003", + "location": "westus2", "name": "ImportAKSTest000003", "tags": {"AzSecPackAutoConfigReady": + "true", "EnableAzSecPackIdentityPolicy": "true"}, "type": "Microsoft.ContainerService/ManagedClusters", + "properties": {"provisioningState": "Succeeded", "powerState": {"code": "Running"}, + "kubernetesVersion": "1.32", "currentKubernetesVersion": "1.32.6", "dnsPrefix": + "ImportAKST-cli-local-test-r-77d5ab", "fqdn": "importakst-cli-local-test-r-77d5ab-d98oj67e.hcp.westus2.azmk8s.io", + "azurePortalFQDN": "importakst-cli-local-test-r-77d5ab-d98oj67e.portal.hcp.westus2.azmk8s.io", + "agentPoolProfiles": [{"name": "nodepool1", "count": 1, "vmSize": "Standard_D8lds_v5", + "osDiskSizeGB": 300, "osDiskType": "Ephemeral", "kubeletDiskType": "OS", "workloadRuntime": + "OCIContainer", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/virtualNetworks/junbchen-test-dev-vnet/subnets/default", + "maxPods": 250, "type": "VirtualMachineScaleSets", "enableAutoScaling": false, + "scaleDownMode": "Delete", "provisioningState": "Succeeded", "powerState": + {"code": "Running"}, "orchestratorVersion": "1.32", "currentOrchestratorVersion": + "1.32.6", "enableNodePublicIP": false, "mode": "System", "enableEncryptionAtHost": + false, "enableUltraSSD": false, "osType": "Linux", "osSKU": "Ubuntu", "nodeImageVersion": + "AKSUbuntu-2204gen2containerd-202507.21.0", "upgradeSettings": {"maxSurge": + "10%", "maxUnavailable": "0"}, "enableFIPS": false, "networkProfile": {}, + "securityProfile": {"enableVTPM": false, "enableSecureBoot": false}}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDrBgKkL4uf19PGAGvXYPyTPhpWw/py9d1B94wzHPri98pBTicWdrdocc9eEKSCAcmOAWgslD5zjEkYViq4P9l9e0H6hbM0FlA3iYDnoC5B0r8PEh4GJd3Yem0OTtyPW7oJUZHWc28qqHi9HA2hBPG9YwurtCzLJsWC1RfNZymYJK872u2a6youT2iFIZZRlSz/GemIHlUKoYJ+QG7fe3mVDuWpd3LRl5NjRHdubRN5mLBakfjhT/IjIo8CtNKu/giHpgNM3TDpSJ3xdPKBqT7fypCkvWocgcJ9DziI1FHo6W/ATUC3qkXOisQCT3cbC+9uGURhtaMTI3GYCI+NObi3"}]}}, + "servicePrincipalProfile": {"clientId": "msi"}, "nodeResourceGroup": "MC_clitest.rg000001_ImportAKSTest000003_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": + {"networkPlugin": "azure", "networkPluginMode": "overlay", "networkPolicy": + "none", "networkDataplane": "azure", "loadBalancerSku": "standard", "loadBalancerProfile": + {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/publicIPAddresses/junbchen-test-dev-pip"}]}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/junbchen/providers/Microsoft.Network/publicIPAddresses/junbchen-test-dev-pip"}], + "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30, "backendPoolType": + "nodeIPConfiguration"}, "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "podCidrs": ["10.244.0.0/16"], + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "maxAgentPools": + 100, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest.rg000001_ImportAKSTest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ImportAKSTest000003-agentpool", + "clientId": "0b42238a-1f4a-4d5a-9c49-c7e8df9bd644", "objectId": "38097874-3592-43b6-af85-c56e95bf9dc3"}}, + "autoUpgradeProfile": {"nodeOSUpgradeChannel": "NodeImage"}, "disableLocalAccounts": + false, "securityProfile": {"imageCleaner": {"enabled": true, "intervalHours": + 168}}, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": + {"enabled": true}, "snapshotController": {"enabled": true}}, "oidcIssuerProfile": + {"enabled": false}, "workloadAutoScalerProfile": {}, "resourceUID": "689ea5988ed2dd0001b48bf3", + "metricsProfile": {"costAnalysis": {"enabled": false}}, "nodeProvisioningProfile": + {"mode": "Manual", "defaultNodePools": "Auto"}, "bootstrapProfile": {"artifactSource": + "Direct"}}, "identity": {"type": "SystemAssigned", "principalId": "9138b8b1-614d-4c3a-8a79-001ab2bbe55d", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, "sku": {"name": "Base", + "tier": "Free"}}' + headers: + cache-control: + - no-cache + content-length: + - '4429' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:20:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '16498' + x-msedge-ref: + - 'Ref A: 1DA2FCFB32AE4D99ACC6C4CF6EFADC62 Ref B: MAA201060515025 Ref C: 2025-08-15T03:20:05Z' + status: + code: 200 + message: OK +- request: + body: '{"command": "kubectl get configmap non-existent-config -n default -o json", + "context": ""}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + Content-Length: + - '90' + Content-Type: + - application/json + ParameterSetName: + - --output + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003/runCommand?api-version=2025-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Aug 2025 03:20:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedclusters/ImportAKSTest000003/commandResults/5f7748e6515e4ce583dadd7aa486710b?api-version=2025-05-01&t=638908248084956001&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=rUtT7gPko0Nw3S8tBiCbYnMBzm8r8fwevVKQoal7dsxmkJ0V8-jE3-Oiwl529hYYXOeY-M1Ea6mk9pK2GPRYoLzI2Nyl5xSX0-f7EhDoAqWGHkr-8Oidv3BWlLpfgwzIto5sKxSVYjoEZfpitLSh59Z2VpKLHIjpgQsrIoxLcvMoIwge820hkdkcgxB7dzZcc52yLDLYSlE8rxeak2Sq8YthCEVX_z5WKcstCWzqsGUQRsX41gvqREmTDeznLVC_NiSSFng0-n1rTPmcKRhQsK6XgvzVq5vnk__WtCusJQYY4b6fzyFI8JwNU9O3vLry09Pk7tQoxnyzj4_KMul1AA&h=T-t4frgbZGwj-2fbDHKagpopFJx03N4akwZUW-gnsLM + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/09c8e6b5-fcb1-4a46-a2d1-939779bcb4af + x-ms-ratelimit-remaining-subscription-global-writes: + - '11999' + x-ms-ratelimit-remaining-subscription-writes: + - '799' + x-msedge-ref: + - 'Ref A: 60E32221C1404E4FBCA119F974E4C0CF Ref B: MAA201060513051 Ref C: 2025-08-15T03:20:07Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig kv import + Connection: + - keep-alive + ParameterSetName: + - --output + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedclusters/ImportAKSTest000003/commandResults/5f7748e6515e4ce583dadd7aa486710b?api-version=2025-05-01&t=638908248084956001&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=rUtT7gPko0Nw3S8tBiCbYnMBzm8r8fwevVKQoal7dsxmkJ0V8-jE3-Oiwl529hYYXOeY-M1Ea6mk9pK2GPRYoLzI2Nyl5xSX0-f7EhDoAqWGHkr-8Oidv3BWlLpfgwzIto5sKxSVYjoEZfpitLSh59Z2VpKLHIjpgQsrIoxLcvMoIwge820hkdkcgxB7dzZcc52yLDLYSlE8rxeak2Sq8YthCEVX_z5WKcstCWzqsGUQRsX41gvqREmTDeznLVC_NiSSFng0-n1rTPmcKRhQsK6XgvzVq5vnk__WtCusJQYY4b6fzyFI8JwNU9O3vLry09Pk7tQoxnyzj4_KMul1AA&h=T-t4frgbZGwj-2fbDHKagpopFJx03N4akwZUW-gnsLM + response: + body: + string: '{"id": "5f7748e6515e4ce583dadd7aa486710b", "properties": {"provisioningState": + "Succeeded", "exitCode": 1, "startedAt": "2025-08-15T03:20:08Z", "finishedAt": + "2025-08-15T03:20:09Z", "logs": "Error from server (NotFound): configmaps + \"non-existent-config\" not found\n"}}' + headers: + cache-control: + - no-cache + content-length: + - '270' + content-type: + - application/json + date: + - Fri, 15 Aug 2025 03:20:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/ee26f606-8f9e-42ba-9b33-5c2a4029e996 + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 06C214D1EEF548C8B3F4136A887DF8EC Ref B: MAA201060514027 Ref C: 2025-08-15T03:20:09Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --yes --no-wait + User-Agent: + - AZURECLI/2.75.0 azsdk-python-core/1.35.0 Python/3.12.10 (Windows-11-10.0.26100-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerService/managedClusters/ImportAKSTest000003?api-version=2025-04-02-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31da1621-3fd3-4b9e-b614-a9f207827f6b?api-version=2025-03-01&t=638908248146973446&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=PTUt4uLE68494WjIx9C6T8_Tt-PznYCAEnsDCx1QtEAzPBE9OxizNe1G_wYslyqEyYoGUt7Hu6HmTeGWcZ-h7JL2MWvK63CWCLsasQ8alp3U6a9nyQt2hImnYBHB8fL8MG5DshaER6nJPlspxBhJfVYRk6O_PutcRZBX-7u7Brgo_TIlZkflxLjR-tx-s0VVvjoeRHPeztlfLCxRmbd12_8lZ8pFzkhQUqsaejJwua15q-5vsK3KIj5MAAYHwguE_Z0FQqFLE7zBzCNmI63pyaxW4iEhwSYtkg0WogeqF_FXmyo7MtZIH1uaMhJQgQawkC-hxmVSIPmVYmpDLWUanA&h=cqGalYsniTQD28SNf_3DNG9UIft0IwMXbMfsbx_KepY + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 15 Aug 2025 03:20:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/31da1621-3fd3-4b9e-b614-a9f207827f6b?api-version=2025-03-01&t=638908248147130366&c=MIIIpTCCBo2gAwIBAgITFgGt2JEpNowfqCnGHAABAa3YkTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDMwHhcNMjUwNzE5MTQ1NzQwWhcNMjYwMTE1MTQ1NzQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5TQVW0Qals2t66nORtdmQwb00kVPjniCGDLLX4mwKZ-fxkHqwHO7g_esL2deyq8HcN36C0DLwWukkoVGn0ufXbKd1pJ4b5N_sx4zsPY-9cZffSeCobK9SMjDw_Z2FngZDr6jynqhn1LqM5oTNDC7WkeOTSdwhN3w0-wgZgYR6l5slOSYIk0nAkZj-Pt4UIneFIDrvRJ0f0vA3lPPcQ94RHxKqVM21jHUI1dgUO5gb4nv5xUsEJBSTgKA9pH4sWzyETRwvAn6ZtvhRLAT4VGssZKaNe9Fd-Fpp40QwiARBKySjS1MpVsyVhuGwxdWHhXfUscU5Ux_dlfgHy3RvE4PUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9BTTNQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAzKDEpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQU0zUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMygxKS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0FNM1BLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3J0MB0GA1UdDgQWBBQ_6zDy7fendurTyys2Fav6C-FFKjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDMoMSkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBRIo61gdWpv7GDzaVXRALEyV_xs5DAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggIBAJaPckelU9EAh7Z5s4Kye0xRzJ1cRmt4BcOdI0s982io2nVT2oOo-grIVFjuZ6JQblfiWgy0CLlwdhXTLNrVMOfA-jZ9xZ7PPvXJjPilxt-ZaRt4wEUf2KYVbjdrhNWhRMQfbFJGL0lC4XNWLmvjBioFfwQ_GoerxWSDQl9VE7OEr7-R5XD6nK4_tIza2uzkO1OYffwtur3ezp5rw2cTlf0Y1oRSQXhPzea7-gCYBIqjXykR8v9x-SIwDHPqCyhXqDV1dRFFRSg7VaO5D28keTV7sQO7kduGVK8VK4vTPXXFOzfe9bt7eg0XBq6MfN4j17GQ_TVPUmxvfUoIDYMSpxZu4fGNQ9iKji6ncomVmF9LX6KPd0hWajO7jHWYztEjok0bL9oxAt_A7VZv5crnVac_PnTp2JFfYcYaO4YhRLyfb23v-DQx2WhUZ3mReiEiPAQbpA9wLUYLD7dkPDG5rJSpGnHGchUX-pvHsmlMmM5s9exP-Hxg6BSoQ8-7gO-SvTPuUVHK_3aCp7hNpoyD3cosIrbNQC5Fyi7rRlHTOKuttA9ZZQYWafSnDXdrpHBegHh2RFywnulrzw9pqevDo5FG-M6WUlsPV6lm9aGRWuXs98kExP_g3yzbXRfZ2MaG7c_G6aX2W3rMpuHJ5YsLmwsmVRl75UWaMJMBHcE71_39&s=Zpbl0LptiDFgGps3c0OUS0nYReACFLgFWb291CJx42xHLrtLdGhdLAup2uch0bHVGCpJCNKiKh46Mx0wnEaesLNPasYOBrPGhd0TG8g9v9ArbfhWwhTeM0QIR4QSfTcvDJMVNttbFGrUWQ247_0ADR17OLmT5AU7EvVY8S-7DmuTjqfoeuqe9ZesLmkrzOCQY9WVSWaEX0ngm_mZLvBrGL4hKqMxe01BnoNPXMbqRj2EMxA0uZl0TJTJT4ax1qkVVXdp82l6d8svF9tAhi57RUM-Wa12KWRl9kDovCs1-rDbFCkIpHMXVLsyDMcgcAfW63k9YQL5HI-Xao0tOQmYQQ&h=dnP4TsKDbdb5ZKSPTGkJ9sEVS4icGiVS-YRA6V2kRp4 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=09dbf457-10c4-4829-9786-fe1cd8ef6945/southeastasia/0c8c1ff1-c1a2-459c-b293-1f359e0929b4 + x-ms-ratelimit-remaining-subscription-deletes: + - '799' + x-ms-ratelimit-remaining-subscription-global-deletes: + - '11999' + x-msedge-ref: + - 'Ref A: 5FFB3CC0481F463498271757DA41E20B Ref B: MAA201060513051 Ref C: 2025-08-15T03:20:10Z' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/test_appconfig_kv_import_export_commands.py b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/test_appconfig_kv_import_export_commands.py index 8c383b0895e..619e6f26d1e 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/test_appconfig_kv_import_export_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/test_appconfig_kv_import_export_commands.py @@ -14,7 +14,7 @@ from azure.cli.testsdk import (ResourceGroupPreparer, ScenarioTest, LiveScenarioTest) from azure.cli.command_modules.appconfig._constants import FeatureFlagConstants, KeyVaultConstants, ImportExportProfiles, AppServiceConstants from azure.cli.testsdk.scenario_tests import AllowLargeResponse -from azure.cli.core.azclierror import MutuallyExclusiveArgumentError +from azure.cli.core.azclierror import AzureInternalError, MutuallyExclusiveArgumentError from azure.cli.command_modules.appconfig.tests.latest._test_utils import create_config_store, CredentialResponseSanitizer, get_resource_name_prefix TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) @@ -1237,3 +1237,105 @@ def test_appconfig_to_appconfig_import_export(self, resource_group, location): self.check('[0].tags', dest_tags)]).get_output_in_json() assert(len(deleted_kv_with_tags) == 1) + + +class AppConfigKubernetesConfigMapImportLiveScenarioTest(LiveScenarioTest): + """Test suite for importing key-values from Kubernetes ConfigMaps using AKS RunCommand.""" + + @AllowLargeResponse() + @ResourceGroupPreparer(parameter_name_for_location='location') + def test_appconfig_import_from_kubernetes_configmap(self, resource_group, location): + """Test all scenarios for importing key-values from Kubernetes ConfigMaps using AKS RunCommand.""" + configmap_import_store_prefix = get_resource_name_prefix('ConfigMapImportTest') + configmap_import_aks_prefix = get_resource_name_prefix('ImportAKSTest') + config_store_name = self.create_random_name(prefix=configmap_import_store_prefix, length=24) + + # Create AKS cluster for testing + aks_cluster_name = self.create_random_name(prefix=configmap_import_aks_prefix, length=24) + + location = 'westus2' + sku = 'standard' + namespace = 'default' + + self.kwargs.update({ + 'config_store_name': config_store_name, + 'aks_cluster_name': aks_cluster_name, + 'rg_loc': location, + 'rg': resource_group, + 'sku': sku, + 'namespace': namespace + }) + + # Create App Configuration store + create_config_store(self, self.kwargs) + + aks_created = False + + try: + # Create AKS cluster and wait for completion + self.cmd('aks create -g {rg} -n {aks_cluster_name} -l {rg_loc} --node-count 1 --generate-ssh-keys --enable-managed-identity --enable-image-cleaner --node-os-upgrade-channel NodeImage') + + # Wait for AKS cluster to be ready + self.cmd('aks wait -g {rg} -n {aks_cluster_name} --created') + + aks_created = True + + # try: + # Scenario 1: Import from a specific ConfigMap + configmap_name = 'test-config' + label1 = 'ConfigMapImport' + prefix = 'test/' + + kubectl_create_cmd = f'''kubectl create configmap {configmap_name} --from-literal=database.host=localhost --from-literal=database.port=5432 --from-literal=app.name=testapp -n {namespace}''' + + self.kwargs.update({ + 'configmap_name': configmap_name, + 'label': label1, + 'prefix': prefix, + 'kubectl_create_cmd': kubectl_create_cmd + }) + + # Create ConfigMap using AKS run command + self.cmd('aks command invoke -g {rg} -n {aks_cluster_name} --command "{kubectl_create_cmd}"') + + # Import from specific ConfigMap + self.cmd('appconfig kv import -n {config_store_name} -s aks --aks-cluster {aks_cluster_name} --configmap-name {configmap_name} --configmap-namespace {namespace} --label {label} --prefix {prefix} -y') + + # Verify imported key-values + imported_kvs = self.cmd('appconfig kv list -n {config_store_name} --label {label}').get_output_in_json() + + # Check that all expected keys were imported + expected_keys = ['test/database.host', 'test/database.port', 'test/app.name'] + imported_keys = [kv['key'] for kv in imported_kvs] + + for expected_key in expected_keys: + assert expected_key in imported_keys, f"Expected key '{expected_key}' not found in imported keys" + + # Verify specific values + database_host = next(kv for kv in imported_kvs if kv['key'] == 'test/database.host') + assert database_host['value'] == 'localhost' + + database_port = next(kv for kv in imported_kvs if kv['key'] == 'test/database.port') + assert database_port['value'] == '5432' + + app_name = next(kv for kv in imported_kvs if kv['key'] == 'test/app.name') + assert app_name['value'] == 'testapp' + + # Scenario 2: Error handling - non-existent ConfigMap + non_existent_configmap = 'non-existent-config' + error_label = 'ErrorTest' + + self.kwargs.update({ + 'non_existent_configmap': non_existent_configmap, + 'error_label': error_label + }) + + # This should fail gracefully + with self.assertRaises(AzureInternalError): + self.cmd('appconfig kv import -n {config_store_name} -s aks --aks-cluster {aks_cluster_name} --configmap-name {non_existent_configmap} --configmap-namespace {namespace} --label {error_label} -y') + finally: + if aks_created: + try: + self.cmd('aks delete -g {rg} -n {aks_cluster_name} --yes --no-wait') + except Exception as cleanup_error: + print(f"Warning: Failed to clean up AKS cluster {aks_cluster_name}: {str(cleanup_error)}") \ No newline at end of file