From a0f5f192983f03d57b721de8dd013db0bf16b4cd Mon Sep 17 00:00:00 2001 From: Avani Gupta Date: Fri, 27 Dec 2019 16:18:52 -0800 Subject: [PATCH 1/6] Import/export with label filters b/w config stores --- .../cli/command_modules/appconfig/_help.py | 14 +++++++- .../command_modules/appconfig/_kv_helpers.py | 13 ++++--- .../cli/command_modules/appconfig/_params.py | 10 +++--- .../cli/command_modules/appconfig/keyvalue.py | 35 ++++++++++++++----- 4 files changed, 54 insertions(+), 18 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/_help.py b/src/azure-cli/azure/cli/command_modules/appconfig/_help.py index 687f6704a11..62cf965b55d 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/_help.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/_help.py @@ -76,6 +76,12 @@ text: az appconfig kv export -n MyAppConfiguration -d appservice --appservice-account MyAppService - name: Export all keys with label test excluding feature flags to a json file. text: az appconfig kv export -n MyAppConfiguration --label test -d file --path D:/abc.json --format json --skip-features + - name: Export all keys and feature flags with all labels to another App Configuration. + text: az appconfig kv export -n MyAppConfiguration -d appconfig --dest-name AnotherAppConfiguration --key * --label * --preserve-labels + - name: Export all keys and feature flags with all labels to another App Configuration and overwrite destination labels. + text: az appconfig kv export -n MyAppConfiguration -d appconfig --dest-name AnotherAppConfiguration --key * --label * --dest-label ExportedKeys + - name: Export all keys and feature flags with all labels to another App Configuration and assign null label in destination AppConfig. + text: az appconfig kv export -n MyAppConfiguration -d appconfig --dest-name AnotherAppConfiguration --key * --label * """ helps['appconfig kv import'] = """ @@ -84,12 +90,18 @@ examples: - name: Import all keys and feature flags from a file and apply test label. text: az appconfig kv import -n MyAppConfiguration --label test -s file --path D:/abc.json --format json - - name: Import all keys and feature flags and apply null label from an App Configuration. + - name: Import all keys and feature flags with null label and apply null label from an App Configuration. text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration - name: Import all keys and apply null label from an App Service appliaction. text: az appconfig kv import -n MyAppConfiguration -s appservice --appservice-account MyAppService - name: Import all keys with label test and apply test2 label excluding feature flags from an App Configuration. text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-label test --label test2 --src-name AnotherAppConfiguration --skip-features + - name: Import all keys and feature flags with all labels to another App Configuration. + text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --key * --src-label * --preserve-labels + - name: Import all keys and feature flags with all labels to another App Configuration and overwrite labels. + text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --key * --src-label * --label ImportedKeys + - name: Import all keys and feature flags with all labels to another App Configuration and assign null label. + text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --key * --src-label * """ helps['appconfig kv list'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/_kv_helpers.py b/src/azure-cli/azure/cli/command_modules/appconfig/_kv_helpers.py index 7453fd3aaa3..b0c7c4ff46a 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/_kv_helpers.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/_kv_helpers.py @@ -228,7 +228,7 @@ def __read_kv_from_config_store(cmd, name=None, connection_string=None, key=None return key_values -def __write_kv_and_features_to_config_store(cmd, key_values, features=None, name=None, connection_string=None, label=None): +def __write_kv_and_features_to_config_store(cmd, key_values, features=None, name=None, connection_string=None, label=None, preserve_labels=False): if not key_values and not features: return try: @@ -239,9 +239,14 @@ def __write_kv_and_features_to_config_store(cmd, key_values, features=None, name if features: key_values.extend(__convert_featureflag_list_to_keyvalue_list(features)) - for kv in key_values: - kv.label = label - azconfig_client.set_keyvalue(kv, ModifyKeyValueOptions()) + if not preserve_labels: + for kv in key_values: + kv.label = label + azconfig_client.set_keyvalue(kv, ModifyKeyValueOptions()) + else: + for kv in key_values: + azconfig_client.set_keyvalue(kv, ModifyKeyValueOptions()) + except Exception as exception: raise CLIError(str(exception)) 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 398d939a90b..b2577c9ceca 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/_params.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/_params.py @@ -75,7 +75,7 @@ def load_arguments(self, _): c.argument('id_', options_list=['--id'], help='Id of the key to be regenerated. Can be found using az appconfig credential list command.') with self.argument_context('appconfig kv import') as c: - 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('label', help="Imported KVs and feature flags will be assigned with this label. If omitted, for file and appservice source, will assign null label by default. For AppConfig source, if neither --label nor --preserve-labels is specified, will assign null label by default. If there are duplicate keys in source AppConfig, only the last key will be imported with this label.") 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('yes', help="Do not prompt for preview.") @@ -92,13 +92,14 @@ def load_arguments(self, _): c.argument('src_name', help='The name of the source App Configuration.') c.argument('src_connection_string', validator=validate_connection_string, help="Combination of access key and endpoint of the source store.") c.argument('src_key', help='If no key specified, import all keys by default. Support star sign as filters, for instance abc* means keys with abc as prefix. Similarly, *abc and *abc* are also supported. Key filtering not applicable for feature flags. By default, all feature flags with specified label will be imported.') - c.argument('src_label', help="Only keys with this label in source AppConfig will be imported. If no label specified, import keys with null label by default.") + c.argument('src_label', help="Only keys with this label in source AppConfig will be imported. If no src-label specified, import keys with null label by default. Support star sign as filters, for instance * means all labels, abc* means labels with abc as prefix. Similarly, *abc and *abc* are also supported.") + c.argument('preserve_labels', arg_type=get_three_state_flag(), help="Original labels from source AppConfig will be preserved for all KVs. This argument should only be specified when --label is NOT provided.") 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. Required for AppService arguments') 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.") + 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. Only when export destination is appconfig, we support star sign as filters, for instance * means all labels and abc* means labels with abc as prefix. Similarly, *abc and *abc* are also supported. Label filters are not supported when exporting to file or appservice.") c.argument('prefix', help="Prefix to be trimmed from keys. Prefix will be ignored for feature flags.") c.argument('key', help='If no key specified, return all keys by default. Support star sign as filters, for instance abc* means keys with abc as prefix. Similarly, *abc and *abc* are also supported. Key filtering not applicable for feature flags. By default, all feature flags with specified label will be exported.') c.argument('destination', options_list=['--destination', '-d'], arg_type=get_enum_type(['file', 'appconfig', 'appservice']), validator=validate_export, help="The destination of exporting. Note that exporting feature flags to appservice is not supported.") @@ -116,7 +117,8 @@ def load_arguments(self, _): with self.argument_context('appconfig kv export', arg_group='AppConfig') as c: c.argument('dest_name', help='The name of the destination App Configuration.') c.argument('dest_connection_string', validator=validate_connection_string, help="Combination of access key and endpoint of the destination store.") - c.argument('dest_label', help="Exported KVs will be labeled with this destination label.") + c.argument('dest_label', help="Exported KVs will be labeled with this destination label. If neither --dest-label nor --preserve-labels is specified, will assign null label. If there are duplicate keys in source AppConfig, only the last key will be exported with dest-label.") + c.argument('preserve_labels', arg_type=get_three_state_flag(), help="Original labels from source AppConfig will be preserved for all KVs. This argument should only be specified when --dest-label is NOT provided.") with self.argument_context('appconfig kv export', 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. Required for AppService arguments') 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 e2759e0ed93..71ca53b1ff6 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/keyvalue.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/keyvalue.py @@ -3,7 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -# pylint: disable=line-too-long +# pylint: disable=line-too-long, too-many-locals import json import time @@ -40,6 +40,7 @@ def import_config(cmd, label=None, prefix="", # prefix to add yes=False, + skip_features=False, # from-file parameters path=None, format_=None, @@ -50,10 +51,9 @@ def import_config(cmd, src_connection_string=None, src_key=None, src_label=None, + preserve_labels=False, # from-appservice parameters - appservice_account=None, - skip_features=False): - # pylint: disable=too-many-locals + appservice_account=None): src_features = [] dest_features = [] dest_kvs = [] @@ -70,6 +70,14 @@ def import_config(cmd, src_features = __read_features_from_file(file_path=path, format_=format_) elif source == 'appconfig': + if label is not None and preserve_labels: + raise CLIError("Import failed! Please provide only one of these arguments: 'label' or 'preserve-labels'. See 'az appconfig kv import -h' for examples.") + if preserve_labels: + # We need label to be the same as src_label for preview later. + # This will have no effect on label while writing to config store + # as we check preserve_labels again before labelling KVs. + label = src_label + src_kvs = __read_kv_from_config_store(cmd, name=src_name, connection_string=src_connection_string, key=src_key, label=src_label, prefix_to_add=prefix) # We need to separate KV from feature flags @@ -122,7 +130,7 @@ def import_config(cmd, # import into configstore __write_kv_and_features_to_config_store( - cmd, key_values=src_kvs, name=name, connection_string=connection_string, label=label) + cmd, key_values=src_kvs, name=name, connection_string=connection_string, label=label, preserve_labels=preserve_labels) def export_config(cmd, @@ -133,18 +141,19 @@ def export_config(cmd, key=None, prefix="", # prefix to remove yes=False, + skip_features=False, # to-file parameters path=None, format_=None, separator=None, + naming_convention='pascal', # to-config-store parameters dest_name=None, dest_connection_string=None, dest_label=None, + preserve_labels=False, # to-app-service parameters - appservice_account=None, - skip_features=False, - naming_convention='pascal'): + appservice_account=None): src_features = [] dest_features = [] dest_kvs = [] @@ -152,6 +161,14 @@ def export_config(cmd, format_ = format_.lower() if format_ else None naming_convention = naming_convention.lower() + if destination == 'appconfig' and dest_label is not None and preserve_labels: + raise CLIError("Export failed! Please provide only one of these arguments: 'dest-label' or 'preserve-labels'. See 'az appconfig kv export -h' for examples.") + if destination == 'appconfig' and preserve_labels: + # We need dest_label to be the same as label for preview later. + # This will have no effect on label while writing to config store + # as we check preserve_labels again before labelling KVs. + dest_label = label + # fetch key values from user's configstore src_kvs = __read_kv_from_config_store( cmd, name=name, connection_string=connection_string, key=key, label=label, prefix_to_remove=prefix) @@ -224,7 +241,7 @@ def export_config(cmd, naming_convention=naming_convention) elif destination == 'appconfig': __write_kv_and_features_to_config_store(cmd, key_values=src_kvs, features=src_features, name=dest_name, - connection_string=dest_connection_string, label=dest_label) + connection_string=dest_connection_string, label=dest_label, preserve_labels=preserve_labels) elif destination == 'appservice': __write_kv_to_app_service(cmd, key_values=src_kvs, appservice_account=appservice_account) From 667aca431d65ae5a0729e75423eff8bcf7719300 Mon Sep 17 00:00:00 2001 From: Avani Gupta Date: Mon, 30 Dec 2019 17:07:54 -0800 Subject: [PATCH 2/6] Add unit tests --- CredScanSuppressions.json | 1 + ..._appconfig_to_appconfig_import_export.yaml | 4770 +++++++++++++++++ .../tests/latest/test_appconfig_commands.py | 193 + 3 files changed, 4964 insertions(+) create mode 100644 src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/recordings/test_appconfig_to_appconfig_import_export.yaml diff --git a/CredScanSuppressions.json b/CredScanSuppressions.json index 98a6d606117..f64db47bb2a 100644 --- a/CredScanSuppressions.json +++ b/CredScanSuppressions.json @@ -11,6 +11,7 @@ }, { "file": [ + "src\\azure-cli\\azure\\cli\\command_modules\\appconfig\\tests\\latest\\recordings\\test_appconfig_to_appconfig_import_export.yaml", "src\\azure-cli\\azure\\cli\\command_modules\\appconfig\\tests\\latest\\recordings\\test_azconfig_credential.yaml", "src\\azure-cli\\azure\\cli\\command_modules\\appconfig\\tests\\latest\\recordings\\test_azconfig_feature.yaml", "src\\azure-cli\\azure\\cli\\command_modules\\appconfig\\tests\\latest\\recordings\\test_azconfig_feature_filter.yaml", diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/recordings/test_appconfig_to_appconfig_import_export.yaml b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/recordings/test_appconfig_to_appconfig_import_export.yaml new file mode 100644 index 00000000000..9d6180a19fb --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/recordings/test_appconfig_to_appconfig_import_export.yaml @@ -0,0 +1,4770 @@ +interactions: +- request: + body: '{"location": "eastus", "sku": {"name": "Free"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig create + Connection: + - keep-alive + Content-Length: + - '47' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Source000002?api-version=2019-10-01 + response: + body: + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2019-12-31T00:58:01.2944173+00:00","endpoint":"https://Source000002.azconfig.io"},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Source000002","name":"Source000002","location":"eastus","tags":{}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/64fac12b-7514-a8e4-e228-d37f09c8ed69?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '519' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/64fac12b-7514-a8e4-e228-d37f09c8ed69?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/64fac12b-7514-a8e4-e228-d37f09c8ed69","name":"64fac12b-7514-a8e4-e228-d37f09c8ed69","status":"Succeeded","error":null}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/64fac12b-7514-a8e4-e228-d37f09c8ed69?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '248' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Source000002?api-version=2019-10-01 + response: + body: + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-31T00:58:03+00:00","endpoint":"https://sourcea4yseu3i3vvlmwdnee.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcea4yseu3i3vvlmwdnee","name":"Source000002","location":"eastus","tags":{}}' + headers: + cache-control: + - no-cache + content-length: + - '523' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:12 GMT + etag: + - W/"1c00e413-0000-0100-0000-5e0a9d1a0000" + expires: + - '-1' + pragma: + - no-cache + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig credential list + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-10-01 + response: + body: + string: '{"value":[{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-05T21:07:46+00:00","endpoint":"https://appconfigteststorex1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestx1/providers/Microsoft.AppConfiguration/configurationStores/appconfigteststorex1","name":"AppConfigTestStoreX1","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-05-13T20:46:04+00:00","endpoint":"https://configstore.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abarora-test/providers/Microsoft.AppConfiguration/configurationStores/configstore","name":"configstore","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-09T21:10:48+00:00","endpoint":"https://jiyujiyu.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-test/providers/Microsoft.AppConfiguration/configurationStores/jiyujiyu","name":"jiyujiyu","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-06-13T17:35:52+00:00","endpoint":"https://mametcal-app-config.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/mametcal-app-config","name":"mametcal-app-config","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-09T18:14:10+00:00","endpoint":"https://minint-appe4b4-coreprodwcus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodwcus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodwcus","name":"MININT-APPE4B4-CoreProdWCUS","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T18:25:23+00:00","endpoint":"https://recao9301.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao9301","name":"recao9301","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-06T20:23:35+00:00","endpoint":"https://secondsource.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/secondsource","name":"SecondSource","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-04-23T22:34:56+00:00","endpoint":"https://shuaiwcs.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuawan/providers/Microsoft.AppConfiguration/configurationStores/shuaiwcs","name":"shuaiwcs","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-05-06T22:52:03+00:00","endpoint":"https://vijay-app-config.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-app-config","name":"vijay-app-config","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-12T18:54:38+00:00","endpoint":"https://xuxu1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu1","name":"xuxu1","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-12T21:35:04+00:00","endpoint":"https://eventgridteststonexuxu1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/eventgridteststonexuxu1","name":"EventGridTestStoneXuxu1","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-05-31T18:07:37+00:00","endpoint":"https://jimmyca-cus-appconfig.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cus-appconfig","name":"jimmyca-cus-appconfig","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-14T21:05:52+00:00","endpoint":"https://justademo.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azcfg-demo/providers/Microsoft.AppConfiguration/configurationStores/justademo","name":"justademo","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-04-04T23:20:06+00:00","endpoint":"https://msitest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/msitest","name":"msitest","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-13T18:48:23+00:00","endpoint":"https://my-store.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-test/providers/Microsoft.AppConfiguration/configurationStores/my-store","name":"MY-Store","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-13T19:23:15+00:00","endpoint":"https://my-store1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-test/providers/Microsoft.AppConfiguration/configurationStores/my-store1","name":"My-Store1","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-16T23:11:39+00:00","endpoint":"https://recao-916.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao-916","name":"recao-916","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-06-21T20:51:20+00:00","endpoint":"https://recao-test-621.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao-test-621","name":"recao-test-621","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-17T15:06:22+00:00","endpoint":"https://recao1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1","name":"recao1","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-06-10T17:49:24+00:00","endpoint":"https://yijiacus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiacus","name":"yijiacus","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-14T18:43:22+00:00","endpoint":"https://yijiahahahaha.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiahahahaha","name":"yijiahahahaha","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T18:47:53+00:00","endpoint":"https://appconfigstore.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigstore","name":"AppConfigStore","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-07T19:09:14+00:00","endpoint":"https://appconfigteststorexuxu1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/appconfigteststorexuxu1","name":"AppConfigTestStoreXuxu1","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T18:47:27+00:00","endpoint":"https://appconfigurationstore.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigurationstore","name":"AppConfigurationStore","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-08T17:49:46+00:00","endpoint":"https://clitest2019.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuawan/providers/Microsoft.AppConfiguration/configurationStores/clitest2019","name":"clitest2019","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2018-11-30T04:05:08+00:00","endpoint":"https://configbuilderdemo.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigloadtestrg/providers/Microsoft.AppConfiguration/configurationStores/configbuilderdemo","name":"ConfigBuilderDemo","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-03T17:04:49+00:00","endpoint":"https://configstore-delete.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/configstore-delete","name":"configstore-delete","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-25T18:52:34+00:00","endpoint":"https://configstoredemo.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azcfg-demo/providers/Microsoft.AppConfiguration/configurationStores/configstoredemo","name":"ConfigStoreDemo","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-11T21:43:12+00:00","endpoint":"https://ernestt-github-sync.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ernestt-demo/providers/Microsoft.AppConfiguration/configurationStores/ernestt-github-sync","name":"ernestt-github-sync","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T21:37:41+00:00","endpoint":"https://ernestt-sync.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ernestt-test/providers/Microsoft.AppConfiguration/configurationStores/ernestt-sync","name":"ernestt-sync","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-27T20:09:40+00:00","endpoint":"https://ernestt-test1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ernestt-test/providers/Microsoft.AppConfiguration/configurationStores/ernestt-test1","name":"ernestt-test1","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-05T00:02:55+00:00","endpoint":"https://eventgridpowerbi.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/eventgridpowerbi","name":"eventgridpowerbi","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T18:43:44+00:00","endpoint":"https://example.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/example","name":"example","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-05T01:54:39+00:00","endpoint":"https://firstappconfig.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/firstappconfig","name":"FirstAppConfig","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-12T08:30:46+00:00","endpoint":"https://garywang-create.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-create","name":"garywang-create","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2018-08-21T07:04:28+00:00","endpoint":"https://garywang-demo-store.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-demo-store","name":"garywang-demo-store","location":"westus","tags":{"123":"456","789":"000"}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-15T20:37:33+00:00","endpoint":"https://garywang-new.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-new","name":"garywang-new","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-30T23:38:21+00:00","endpoint":"https://garywang10.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang10","name":"garywang10","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T20:22:06+00:00","endpoint":"https://importexporttest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-feature-management/providers/Microsoft.AppConfiguration/configurationStores/importexporttest","name":"ImportExportTest","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-20T19:44:43+00:00","endpoint":"https://jimmyca-wus-appconfig.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-wus-appconfig","name":"jimmyca-wus-appconfig","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T18:45:10+00:00","endpoint":"https://jiyu-store.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-store","name":"JIYU-stORE","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-16T21:26:47+00:00","endpoint":"https://jiyu-test-create.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test-create","name":"jiyu-test-create","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-03T00:48:41+00:00","endpoint":"https://jiyu-test1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test1","name":"jiyu-test1","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-18T19:37:53+00:00","endpoint":"https://jiyujiyujiyu.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyujiyujiyu","name":"jiyujiyujiyu","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-16T23:58:53+00:00","endpoint":"https://jiyutestmachine.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyutestmachine","name":"jiyutestmachine","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T21:41:07+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-02--21-41-03-48.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-02--21-41-03-48","name":"MININT-APPE4B4-FuncProdWUS-2019-10-02--21-41-03-48","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T21:46:06+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-02--21-46-03-44.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-02--21-46-03-44","name":"MININT-APPE4B4-FuncProdWUS-2019-10-02--21-46-03-44","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T21:51:06+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-02--21-51-03-42.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-02--21-51-03-42","name":"MININT-APPE4B4-FuncProdWUS-2019-10-02--21-51-03-42","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-17T22:36:17+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-17--22-36-02-05.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-17--22-36-02-05","name":"MININT-APPE4B4-FuncProdWUS-2019-10-17--22-36-02-05","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-17T22:39:33+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-17--22-39-24-15.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-17--22-39-24-15","name":"MININT-APPE4B4-FuncProdWUS-2019-10-17--22-39-24-15","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-17T22:41:13+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-17--22-41-04-11.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-17--22-41-04-11","name":"MININT-APPE4B4-FuncProdWUS-2019-10-17--22-41-04-11","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-17T22:42:34+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-17--22-42-30-44.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-17--22-42-30-44","name":"MININT-APPE4B4-FuncProdWUS-2019-10-17--22-42-30-44","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-18T00:10:30+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-18--00-10-20-37.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-18--00-10-20-37","name":"MININT-APPE4B4-FuncProdWUS-2019-10-18--00-10-20-37","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"253bf5f6-0248-4ee4-9d7b-5737d646147f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-10-29T21:04:12+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-29--21-04-00-90.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-29--21-04-00-90","name":"MININT-APPE4B4-FuncProdWUS-2019-10-29--21-04-00-90","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-29T21:08:32+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-29--21-08-22-36.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-29--21-08-22-36","name":"MININT-APPE4B4-FuncProdWUS-2019-10-29--21-08-22-36","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"c9c64ebd-5abd-4180-b0a7-eda3c2f54364","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-01T23:58:10+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-01--23-58-06-52.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-01--23-58-06-52","name":"MININT-APPE4B4-FuncProdWUS-2019-11-01--23-58-06-52","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"6be0bac9-5f74-4a63-99bd-5457f8f3a1e3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-02T00:02:09+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-02--00-01-54-32.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-02--00-01-54-32","name":"MININT-APPE4B4-FuncProdWUS-2019-11-02--00-01-54-32","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"b48046d5-8439-4dc4-8053-7e03e7d423a1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-02T00:05:26+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-02--00-05-21-31.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-02--00-05-21-31","name":"MININT-APPE4B4-FuncProdWUS-2019-11-02--00-05-21-31","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-02T00:09:26+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-02--00-09-16-34.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-02--00-09-16-34","name":"MININT-APPE4B4-FuncProdWUS-2019-11-02--00-09-16-34","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"2979c19a-6b1a-427a-abd7-8d4d638fcde3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-02T01:02:47+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-02--01-02-31-51.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-02--01-02-31-51","name":"MININT-APPE4B4-FuncProdWUS-2019-11-02--01-02-31-51","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"e11b33aa-d362-4e48-b599-ce69897412d4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-02T01:05:44+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-02--01-05-35-46.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-02--01-05-35-46","name":"MININT-APPE4B4-FuncProdWUS-2019-11-02--01-05-35-46","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T21:08:15+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-04--21-08-10-24.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-04--21-08-10-24","name":"MININT-APPE4B4-FuncProdWUS-2019-11-04--21-08-10-24","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T21:10:13+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-04--21-10-03-85.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-04--21-10-03-85","name":"MININT-APPE4B4-FuncProdWUS-2019-11-04--21-10-03-85","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"d3cc05e6-d490-4bc6-a936-2b85b74d0a20","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T01:32:57+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-07--01-32-52-78.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-07--01-32-52-78","name":"MININT-APPE4B4-FuncProdWUS-2019-11-07--01-32-52-78","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"ea9703e8-d942-4a91-ae6e-b3302ea5c256","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T01:37:25+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-07--01-37-15-73.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-07--01-37-15-73","name":"MININT-APPE4B4-FuncProdWUS-2019-11-07--01-37-15-73","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-27T22:56:22+00:00","endpoint":"https://minint-appe4b4-msiprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-integrationrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-msiprodwus","name":"MININT-APPE4B4-MSIProdWUS","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-23T01:44:20+00:00","endpoint":"https://notification-test.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/notification-test","name":"notification-test","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2018-08-30T06:11:28+00:00","endpoint":"https://rprgprodwus_2018-08-30_06-11-24-92.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerrprgprodwus_2018-08-30_06-11-24-92/providers/Microsoft.AppConfiguration/configurationStores/rprgprodwus_2018-08-30_06-11-24-92","name":"RPRGProdWus_2018-08-30_06-11-24-92","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T18:46:09+00:00","endpoint":"https://sample.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/sample","name":"sample","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2018-09-19T19:02:56+00:00","endpoint":"https://store_2018-09-19_12-02-53.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuai-test-rg2/providers/Microsoft.AppConfiguration/configurationStores/store_2018-09-19_12-02-53","name":"store_2018-09-19_12-02-53","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-16T23:42:04+00:00","endpoint":"https://sync-integration-source.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-source","name":"sync-integration-source","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-16T23:43:37+00:00","endpoint":"https://sync-integration-target.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-target","name":"sync-integration-target","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-11T18:55:52+00:00","endpoint":"https://xuxu-coreprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu-coreprodwus","name":"xuxu-CoreProdWUS","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-11T18:59:14+00:00","endpoint":"https://xuxu-moveprodwus-09-11--18-56-45.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu-moveprodwus-09-11--18-56-45","name":"xuxu-MoveProdWUS-09-11--18-56-45","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-12T18:53:54+00:00","endpoint":"https://xuxu2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/xuxu2","name":"xuxu2","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-12T20:55:48+00:00","endpoint":"https://xuxu3.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu3","name":"xuxu3","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-09T03:01:18+00:00","endpoint":"https://xuxu4.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu4","name":"XUXU4","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-20T01:00:29+00:00","endpoint":"https://xuxucorerunnerconfigstoreprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxucorerunnerresourcegroupprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxucorerunnerconfigstoreprodwus","name":"xuxuCoreRunnerConfigStoreProdWus","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T18:14:42+00:00","endpoint":"https://xuxumovetest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxumovetest","name":"xuxumovetest","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-22T21:58:58+00:00","endpoint":"https://xuxutest2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxutest2","name":"xuxutest2","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-01-23T22:43:48+00:00","endpoint":"https://xuxuteststore.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuteststore","name":"xuxuteststore","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-29T23:05:33+00:00","endpoint":"https://yijia03.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijia03","name":"yijia03","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-12T00:07:48+00:00","endpoint":"https://yijia04.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijia04","name":"yijia04","location":"westus","tags":{"v1":"g1"}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-05-07T00:14:48+00:00","endpoint":"https://yijiaascii.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiaascii","name":"yijiaascii","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-11T20:24:11+00:00","endpoint":"https://yijiaskutest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiaskutest","name":"yijiaskutest","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-16T22:06:51+00:00","endpoint":"https://appconfigspringhubdemo.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfigspringhubdemo","name":"AppConfigSpringHubDemo","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-10T16:35:08+00:00","endpoint":"https://appconvertappconfig.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconvertsample/providers/Microsoft.AppConfiguration/configurationStores/appconvertappconfig","name":"AppConvertAppConfig","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-02T21:20:00+00:00","endpoint":"https://avani.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avani","name":"avani","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-06-25T21:06:34+00:00","endpoint":"https://clitest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/clitest","name":"clitest","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-03T20:02:51+00:00","endpoint":"https://jiyu-test2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test2","name":"jiyu-test2","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-12T18:43:35+00:00","endpoint":"https://minint-appe4b4-coreprodeus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodeus","name":"MININT-APPE4B4-CoreProdEUS","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"190d4922-5806-460b-a4b2-97bc3d3d5e91","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T18:47:29+00:00","endpoint":"https://minint-appe4b4-funcprodeus-2019-11-07--18-47-12-71.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodeus-2019-11-07--18-47-12-71","name":"MININT-APPE4B4-FuncProdEUS-2019-11-07--18-47-12-71","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"2aa5f431-20d4-4bfd-93d4-59a14b0ad4bf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T18:52:43+00:00","endpoint":"https://minint-appe4b4-funcprodeus-2019-11-07--18-52-37-32.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodeus-2019-11-07--18-52-37-32","name":"MININT-APPE4B4-FuncProdEUS-2019-11-07--18-52-37-32","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T22:25:30+00:00","endpoint":"https://recao1002.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1002","name":"recao1002","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-31T00:58:03+00:00","endpoint":"https://sourcea4yseu3i3vvlmwdnee.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcea4yseu3i3vvlmwdnee","name":"Source000002","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-27T00:05:14+00:00","endpoint":"https://vijay-eus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-shoebox/providers/Microsoft.AppConfiguration/configurationStores/vijay-eus","name":"vijay-eus","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-13T19:25:01+00:00","endpoint":"https://webscoutscantarget.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/webscoutscantarget","name":"WebScoutScanTarget","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-01T22:47:38+00:00","endpoint":"https://jiyu-test.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-rg/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test","name":"jiyu-test","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T01:03:58+00:00","endpoint":"https://minint-appe4b4-coreprodneu.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodneu/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodneu","name":"MININT-APPE4B4-CoreProdNEU","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T22:23:50+00:00","endpoint":"https://minint-appe4b4-funcprodneu-2019-09-10--22-23-34-92.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodneu/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodneu-2019-09-10--22-23-34-92","name":"MININT-APPE4B4-FuncProdNEU-2019-09-10--22-23-34-92","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T16:55:20+00:00","endpoint":"https://a-----a.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/a-----a","name":"a-----a","location":"westus2","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-21T21:53:17+00:00","endpoint":"https://recao1021.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1021","name":"recao1021","location":"westus2","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:16:56+00:00","endpoint":"https://recao11062.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao11062","name":"recao11062","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-26T23:21:29+00:00","endpoint":"https://recao926.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao926","name":"recao926","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T18:27:25+00:00","endpoint":"https://recao9302.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao9302","name":"recao9302","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-21T00:29:25+00:00","endpoint":"https://storeincanary.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/storeincanary","name":"StoreInCanary","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T19:32:12+00:00","endpoint":"https://testmametcal.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/testmametcal","name":"testMaMetcal","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-11T00:49:38+00:00","endpoint":"https://testnotification.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuawan/providers/Microsoft.AppConfiguration/configurationStores/testnotification","name":"testNotification","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-21T21:59:54+00:00","endpoint":"https://vijay-canary.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-canary","name":"vijay-canary","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:14:46+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-14-39-96.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-14-39-96","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-14-39-96","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:24:50+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-24-39-94.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-24-39-94","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-24-39-94","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:28:17+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-28-06-97.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-28-06-97","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-28-06-97","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:54:39+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-54-23-15.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-54-23-15","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-54-23-15","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"38915f7f-0cd2-482e-ac9d-0e681c4b203f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:58:00+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-57-49-91.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-57-49-91","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-57-49-91","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"4f4c18c5-1b04-43b9-97a7-e9922410c239","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:59:35+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-59-29-62.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-59-29-62","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-59-29-62","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T23:08:22+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--23-08-02-34.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--23-08-02-34","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--23-08-02-34","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"d2845735-ccfd-4f96-a886-09dbb9261374","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T23:15:53+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--23-15-39-49.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--23-15-39-49","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--23-15-39-49","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"f1e569c4-7d92-4162-9cdf-cfdb87ac1b07","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T23:20:15+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--23-19-21-37.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--23-19-21-37","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--23-19-21-37","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T23:24:24+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--23-24-21-30.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--23-24-21-30","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--23-24-21-30","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T00:07:56+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--00-07-53-08.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--00-07-53-08","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--00-07-53-08","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T00:09:40+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--00-09-28-97.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--00-09-28-97","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--00-09-28-97","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T00:39:21+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--00-39-15-58.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--00-39-15-58","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--00-39-15-58","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T00:40:23+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--00-39-42-19.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--00-39-42-19","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--00-39-42-19","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T00:45:15+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--00-45-04-57.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--00-45-04-57","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--00-45-04-57","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T07:27:03+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--07-26-51-98.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--07-26-51-98","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--07-26-51-98","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T07:44:39+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--07-44-28-21.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--07-44-28-21","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--07-44-28-21","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"3e6edb5e-37ca-427c-96dd-6155e6feac0b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T17:55:10+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--17-54-54-78.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--17-54-54-78","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--17-54-54-78","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"ef93d7e9-4369-4233-a862-1b2dd924ce0d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:05:57+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-05-51-33.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-05-51-33","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-05-51-33","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"66df8b89-6bc0-4118-92f5-3fff26ead195","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:08:03+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-07-57-83.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-07-57-83","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-07-57-83","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"62eda3e9-f28f-4a67-8009-b74c5a70c550","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:09:38+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-09-26-85.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-09-26-85","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-09-26-85","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:13:03+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-12-57-58.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-12-57-58","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-12-57-58","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"7a740dcc-d783-4b31-93c6-e7535df8de87","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:14:41+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-14-35-46.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-14-35-46","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-14-35-46","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"0acec9e9-e1dd-4147-b971-4f1b4a7e00ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:15:35+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--19-15-19-18.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--19-15-19-18","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--19-15-19-18","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-21T18:35:42+00:00","endpoint":"https://xuxu-movetest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-movetest","name":"xuxu-movetest","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-30T23:17:20+00:00","endpoint":"https://xuxuaad.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuaad","name":"xuxuAAD","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T21:26:01+00:00","endpoint":"https://billingtest.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/billingtest","name":"billingtest","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T22:48:42+00:00","endpoint":"https://garywang-cuseuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-cuseuap","name":"garywang-cuseuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-20T20:22:13+00:00","endpoint":"https://garywang-cuseuap2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-cuseuap2","name":"garywang-cuseuap2","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-30T19:39:11+00:00","endpoint":"https://garywang-vnet.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywang-vm-rg/providers/Microsoft.AppConfiguration/configurationStores/garywang-vnet","name":"garywang-vnet","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-19T22:08:42+00:00","endpoint":"https://jiyu-ceuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-ceuap","name":"jiyu-ceuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:06:04+00:00","endpoint":"https://recao1106.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1106","name":"recao1106","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-15T22:27:00+00:00","endpoint":"https://vijay-cuseuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-cuseuap","name":"vijay-cuseuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T21:55:52+00:00","endpoint":"https://vijay-sb.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-sb","name":"vijay-sb","location":"centraluseuap","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-10-01&%24skiptoken=1ZTdasIwFMffJYxd7dg21hUFGUUKu3AqWtl1kh41liYhH04nvvtaN2SvUM5VOCTkx%2f%2fjShSe%2fVyq2pHJlXwWm3JWLMp1Pt9uyIQcvDduEkUNU2yPDSo%2fYN%2fB4kDoJnKBO2Gl8VIrF2VZNWI8foUMqwpSRAFc4BhGVCQJz0acD7PIWH2SFVoXfUhhtdM7P8iNmWm1k%2ftgWfdUJP6fNl5bdG%2fMSDi199r9lMbJGJIY4uT5ydXSlLpGNT2Hc0jIC%2bnp9y%2fyKNnhb1qMTom%2bSXBncHXw6HyLUOT9Q%2fjC1tM6eCeY8szusQNZLNfle7FdL1dFvzLRSCWVB2YMpjyFXVCiTWClMMA9RPE9R0Ap0CEMUxjTh%2fNov0gtCqaTmHYN8Os7WmzzVb8gugpjrGoRHiXWP4iTPLILOE5utx8%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '78321' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - e2719b20-7c19-414c-838c-5376821c13e6 + - 03c1ae28-9f3b-44c5-ac3e-d31e31747610 + - 6d742d4e-ea33-4d18-96a4-60027b025004 + - 0204c9c0-6459-4247-971e-77a94170505b + - 0ba58cbf-aa22-4533-acc3-5c50b88ec2ae + - 23d51b09-66c4-4da5-97eb-0126362dc689 + - 1710719c-bc1f-4960-9f93-691d025065fd + - e86bc1e1-b136-4bc0-a94a-e966c99e809b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig credential list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Source000002/ListKeys?api-version=2019-10-01 + response: + body: + string: '{"value":[{"id":"iHtq-l0-s0:oVJbfadlUgYw2vl1uJ4b","name":"Primary","value":"rwiqd4J3HcRaBiosjJyKM2LlgQderJqXhAJoyMRGvX8=","connectionString":"Endpoint=https://sourcea4yseu3i3vvlmwdnee.azconfig.io;Id=iHtq-l0-s0:oVJbfadlUgYw2vl1uJ4b;Secret=rwiqd4J3HcRaBiosjJyKM2LlgQderJqXhAJoyMRGvX8=","lastModified":"2019-12-31T00:58:02+00:00","readOnly":false},{"id":"L9lB-l0-s0:i4VfRv4BgxF61f77+dA5","name":"Secondary","value":"HDLdwwq3pNd+fsYcOfxNiM5zfnXUVKSz8y/+KheW+uw=","connectionString":"Endpoint=https://sourcea4yseu3i3vvlmwdnee.azconfig.io;Id=L9lB-l0-s0:i4VfRv4BgxF61f77+dA5;Secret=HDLdwwq3pNd+fsYcOfxNiM5zfnXUVKSz8y/+KheW+uw=","lastModified":"2019-12-31T00:58:02+00:00","readOnly":false},{"id":"M49t-l0-s0:t6XsJEWAPID3hQH2RbmU","name":"Primary + Read Only","value":"aNE5p6q/2qWjCRC3Y2fymDl1wVC+ArBujTJK4Qzgd+o=","connectionString":"Endpoint=https://sourcea4yseu3i3vvlmwdnee.azconfig.io;Id=M49t-l0-s0:t6XsJEWAPID3hQH2RbmU;Secret=aNE5p6q/2qWjCRC3Y2fymDl1wVC+ArBujTJK4Qzgd+o=","lastModified":"2019-12-31T00:58:02+00:00","readOnly":true},{"id":"leFk-l0-s0:MvN97IppYdRWp8z656+K","name":"Secondary + Read Only","value":"U2Uw4zi4LRrjNELKHy3dnHZN/enaeHbyGwVy/1gcFSE=","connectionString":"Endpoint=https://sourcea4yseu3i3vvlmwdnee.azconfig.io;Id=leFk-l0-s0:MvN97IppYdRWp8z656+K;Secret=U2Uw4zi4LRrjNELKHy3dnHZN/enaeHbyGwVy/1gcFSE=","lastModified":"2019-12-31T00:58:02+00:00","readOnly":true}],"nextLink":null}' + headers: + cache-control: + - no-cache + content-length: + - '1389' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "sku": {"name": "Free"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig create + Connection: + - keep-alive + Content-Length: + - '47' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Destination000003?api-version=2019-10-01 + response: + body: + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2019-12-31T00:58:19.9925624+00:00","endpoint":"https://Destination000003.azconfig.io"},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Destination000003","name":"Destination000003","location":"eastus","tags":{}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/a970e686-c2b6-9937-33a1-5cb8d91689c4?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '519' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/a970e686-c2b6-9937-33a1-5cb8d91689c4?api-version=2019-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/a970e686-c2b6-9937-33a1-5cb8d91689c4","name":"a970e686-c2b6-9937-33a1-5cb8d91689c4","status":"Succeeded","error":null}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/a970e686-c2b6-9937-33a1-5cb8d91689c4?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '248' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Destination000003?api-version=2019-10-01 + response: + body: + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-31T00:58:21+00:00","endpoint":"https://destination4dcuuqkdqkajy.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destination4dcuuqkdqkajy","name":"Destination000003","location":"eastus","tags":{}}' + headers: + cache-control: + - no-cache + content-length: + - '523' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:30 GMT + etag: + - W/"1c000c14-0000-0100-0000-5e0a9d2d0000" + expires: + - '-1' + pragma: + - no-cache + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig credential list + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-10-01 + response: + body: + string: '{"value":[{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-05T21:07:46+00:00","endpoint":"https://appconfigteststorex1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestx1/providers/Microsoft.AppConfiguration/configurationStores/appconfigteststorex1","name":"AppConfigTestStoreX1","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-05-13T20:46:04+00:00","endpoint":"https://configstore.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abarora-test/providers/Microsoft.AppConfiguration/configurationStores/configstore","name":"configstore","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-09T21:10:48+00:00","endpoint":"https://jiyujiyu.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-test/providers/Microsoft.AppConfiguration/configurationStores/jiyujiyu","name":"jiyujiyu","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-06-13T17:35:52+00:00","endpoint":"https://mametcal-app-config.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/mametcal-app-config","name":"mametcal-app-config","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-09T18:14:10+00:00","endpoint":"https://minint-appe4b4-coreprodwcus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodwcus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodwcus","name":"MININT-APPE4B4-CoreProdWCUS","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T18:25:23+00:00","endpoint":"https://recao9301.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao9301","name":"recao9301","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-06T20:23:35+00:00","endpoint":"https://secondsource.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/secondsource","name":"SecondSource","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-04-23T22:34:56+00:00","endpoint":"https://shuaiwcs.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuawan/providers/Microsoft.AppConfiguration/configurationStores/shuaiwcs","name":"shuaiwcs","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-05-06T22:52:03+00:00","endpoint":"https://vijay-app-config.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-app-config","name":"vijay-app-config","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-12T18:54:38+00:00","endpoint":"https://xuxu1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu1","name":"xuxu1","location":"westcentralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-12T21:35:04+00:00","endpoint":"https://eventgridteststonexuxu1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/eventgridteststonexuxu1","name":"EventGridTestStoneXuxu1","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-05-31T18:07:37+00:00","endpoint":"https://jimmyca-cus-appconfig.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-cus-appconfig","name":"jimmyca-cus-appconfig","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-14T21:05:52+00:00","endpoint":"https://justademo.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azcfg-demo/providers/Microsoft.AppConfiguration/configurationStores/justademo","name":"justademo","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-04-04T23:20:06+00:00","endpoint":"https://msitest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventgridtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/msitest","name":"msitest","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-13T18:48:23+00:00","endpoint":"https://my-store.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-test/providers/Microsoft.AppConfiguration/configurationStores/my-store","name":"MY-Store","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-13T19:23:15+00:00","endpoint":"https://my-store1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-test/providers/Microsoft.AppConfiguration/configurationStores/my-store1","name":"My-Store1","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-16T23:11:39+00:00","endpoint":"https://recao-916.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao-916","name":"recao-916","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-06-21T20:51:20+00:00","endpoint":"https://recao-test-621.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao-test-621","name":"recao-test-621","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-17T15:06:22+00:00","endpoint":"https://recao1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1","name":"recao1","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-06-10T17:49:24+00:00","endpoint":"https://yijiacus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiacus","name":"yijiacus","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-14T18:43:22+00:00","endpoint":"https://yijiahahahaha.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiahahahaha","name":"yijiahahahaha","location":"centralus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T18:47:53+00:00","endpoint":"https://appconfigstore.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigstore","name":"AppConfigStore","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-07T19:09:14+00:00","endpoint":"https://appconfigteststorexuxu1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/appconfigteststorexuxu1","name":"AppConfigTestStoreXuxu1","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T18:47:27+00:00","endpoint":"https://appconfigurationstore.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/appconfigurationstore","name":"AppConfigurationStore","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-08T17:49:46+00:00","endpoint":"https://clitest2019.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuawan/providers/Microsoft.AppConfiguration/configurationStores/clitest2019","name":"clitest2019","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2018-11-30T04:05:08+00:00","endpoint":"https://configbuilderdemo.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigloadtestrg/providers/Microsoft.AppConfiguration/configurationStores/configbuilderdemo","name":"ConfigBuilderDemo","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-03T17:04:49+00:00","endpoint":"https://configstore-delete.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/configstore-delete","name":"configstore-delete","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-25T18:52:34+00:00","endpoint":"https://configstoredemo.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azcfg-demo/providers/Microsoft.AppConfiguration/configurationStores/configstoredemo","name":"ConfigStoreDemo","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-11T21:43:12+00:00","endpoint":"https://ernestt-github-sync.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ernestt-demo/providers/Microsoft.AppConfiguration/configurationStores/ernestt-github-sync","name":"ernestt-github-sync","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T21:37:41+00:00","endpoint":"https://ernestt-sync.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ernestt-test/providers/Microsoft.AppConfiguration/configurationStores/ernestt-sync","name":"ernestt-sync","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-27T20:09:40+00:00","endpoint":"https://ernestt-test1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ernestt-test/providers/Microsoft.AppConfiguration/configurationStores/ernestt-test1","name":"ernestt-test1","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-05T00:02:55+00:00","endpoint":"https://eventgridpowerbi.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu-test/providers/Microsoft.AppConfiguration/configurationStores/eventgridpowerbi","name":"eventgridpowerbi","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T18:43:44+00:00","endpoint":"https://example.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/example","name":"example","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-05T01:54:39+00:00","endpoint":"https://firstappconfig.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/firstappconfig","name":"FirstAppConfig","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-12T08:30:46+00:00","endpoint":"https://garywang-create.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-create","name":"garywang-create","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2018-08-21T07:04:28+00:00","endpoint":"https://garywang-demo-store.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-demo-store","name":"garywang-demo-store","location":"westus","tags":{"123":"456","789":"000"}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-15T20:37:33+00:00","endpoint":"https://garywang-new.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-new","name":"garywang-new","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-30T23:38:21+00:00","endpoint":"https://garywang10.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang10","name":"garywang10","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T20:22:06+00:00","endpoint":"https://importexporttest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-feature-management/providers/Microsoft.AppConfiguration/configurationStores/importexporttest","name":"ImportExportTest","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-20T19:44:43+00:00","endpoint":"https://jimmyca-wus-appconfig.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jimmyca-wus/providers/Microsoft.AppConfiguration/configurationStores/jimmyca-wus-appconfig","name":"jimmyca-wus-appconfig","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T18:45:10+00:00","endpoint":"https://jiyu-store.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-store","name":"JIYU-stORE","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-16T21:26:47+00:00","endpoint":"https://jiyu-test-create.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test-create","name":"jiyu-test-create","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-03T00:48:41+00:00","endpoint":"https://jiyu-test1.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test1","name":"jiyu-test1","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-18T19:37:53+00:00","endpoint":"https://jiyujiyujiyu.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyujiyujiyu","name":"jiyujiyujiyu","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-16T23:58:53+00:00","endpoint":"https://jiyutestmachine.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyutestmachine","name":"jiyutestmachine","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T21:41:07+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-02--21-41-03-48.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-02--21-41-03-48","name":"MININT-APPE4B4-FuncProdWUS-2019-10-02--21-41-03-48","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T21:46:06+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-02--21-46-03-44.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-02--21-46-03-44","name":"MININT-APPE4B4-FuncProdWUS-2019-10-02--21-46-03-44","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T21:51:06+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-02--21-51-03-42.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-02--21-51-03-42","name":"MININT-APPE4B4-FuncProdWUS-2019-10-02--21-51-03-42","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-17T22:36:17+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-17--22-36-02-05.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-17--22-36-02-05","name":"MININT-APPE4B4-FuncProdWUS-2019-10-17--22-36-02-05","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-17T22:39:33+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-17--22-39-24-15.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-17--22-39-24-15","name":"MININT-APPE4B4-FuncProdWUS-2019-10-17--22-39-24-15","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-17T22:41:13+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-17--22-41-04-11.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-17--22-41-04-11","name":"MININT-APPE4B4-FuncProdWUS-2019-10-17--22-41-04-11","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-17T22:42:34+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-17--22-42-30-44.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-17--22-42-30-44","name":"MININT-APPE4B4-FuncProdWUS-2019-10-17--22-42-30-44","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-18T00:10:30+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-18--00-10-20-37.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-18--00-10-20-37","name":"MININT-APPE4B4-FuncProdWUS-2019-10-18--00-10-20-37","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"253bf5f6-0248-4ee4-9d7b-5737d646147f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-10-29T21:04:12+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-29--21-04-00-90.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-29--21-04-00-90","name":"MININT-APPE4B4-FuncProdWUS-2019-10-29--21-04-00-90","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-29T21:08:32+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-10-29--21-08-22-36.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-10-29--21-08-22-36","name":"MININT-APPE4B4-FuncProdWUS-2019-10-29--21-08-22-36","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"c9c64ebd-5abd-4180-b0a7-eda3c2f54364","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-01T23:58:10+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-01--23-58-06-52.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-01--23-58-06-52","name":"MININT-APPE4B4-FuncProdWUS-2019-11-01--23-58-06-52","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"6be0bac9-5f74-4a63-99bd-5457f8f3a1e3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-02T00:02:09+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-02--00-01-54-32.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-02--00-01-54-32","name":"MININT-APPE4B4-FuncProdWUS-2019-11-02--00-01-54-32","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"b48046d5-8439-4dc4-8053-7e03e7d423a1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-02T00:05:26+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-02--00-05-21-31.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-02--00-05-21-31","name":"MININT-APPE4B4-FuncProdWUS-2019-11-02--00-05-21-31","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-02T00:09:26+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-02--00-09-16-34.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-02--00-09-16-34","name":"MININT-APPE4B4-FuncProdWUS-2019-11-02--00-09-16-34","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"2979c19a-6b1a-427a-abd7-8d4d638fcde3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-02T01:02:47+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-02--01-02-31-51.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-02--01-02-31-51","name":"MININT-APPE4B4-FuncProdWUS-2019-11-02--01-02-31-51","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"e11b33aa-d362-4e48-b599-ce69897412d4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-02T01:05:44+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-02--01-05-35-46.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-02--01-05-35-46","name":"MININT-APPE4B4-FuncProdWUS-2019-11-02--01-05-35-46","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T21:08:15+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-04--21-08-10-24.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-04--21-08-10-24","name":"MININT-APPE4B4-FuncProdWUS-2019-11-04--21-08-10-24","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T21:10:13+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-04--21-10-03-85.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-04--21-10-03-85","name":"MININT-APPE4B4-FuncProdWUS-2019-11-04--21-10-03-85","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"d3cc05e6-d490-4bc6-a936-2b85b74d0a20","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T01:32:57+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-07--01-32-52-78.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-07--01-32-52-78","name":"MININT-APPE4B4-FuncProdWUS-2019-11-07--01-32-52-78","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"ea9703e8-d942-4a91-ae6e-b3302ea5c256","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T01:37:25+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-07--01-37-15-73.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-07--01-37-15-73","name":"MININT-APPE4B4-FuncProdWUS-2019-11-07--01-37-15-73","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-27T22:56:22+00:00","endpoint":"https://minint-appe4b4-msiprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-integrationrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-msiprodwus","name":"MININT-APPE4B4-MSIProdWUS","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-23T01:44:20+00:00","endpoint":"https://notification-test.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/notification-test","name":"notification-test","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2018-08-30T06:11:28+00:00","endpoint":"https://rprgprodwus_2018-08-30_06-11-24-92.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerrprgprodwus_2018-08-30_06-11-24-92/providers/Microsoft.AppConfiguration/configurationStores/rprgprodwus_2018-08-30_06-11-24-92","name":"RPRGProdWus_2018-08-30_06-11-24-92","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T18:46:09+00:00","endpoint":"https://sample.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/sample","name":"sample","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2018-09-19T19:02:56+00:00","endpoint":"https://store_2018-09-19_12-02-53.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuai-test-rg2/providers/Microsoft.AppConfiguration/configurationStores/store_2018-09-19_12-02-53","name":"store_2018-09-19_12-02-53","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-16T23:42:04+00:00","endpoint":"https://sync-integration-source.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-source","name":"sync-integration-source","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-16T23:43:37+00:00","endpoint":"https://sync-integration-target.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-target","name":"sync-integration-target","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-11T18:55:52+00:00","endpoint":"https://xuxu-coreprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu-coreprodwus","name":"xuxu-CoreProdWUS","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-11T18:59:14+00:00","endpoint":"https://xuxu-moveprodwus-09-11--18-56-45.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu-moveprodwus-09-11--18-56-45","name":"xuxu-MoveProdWUS-09-11--18-56-45","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-12T18:53:54+00:00","endpoint":"https://xuxu2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/xuxu2","name":"xuxu2","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-12T20:55:48+00:00","endpoint":"https://xuxu3.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu3","name":"xuxu3","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-09T03:01:18+00:00","endpoint":"https://xuxu4.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu4","name":"XUXU4","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-20T01:00:29+00:00","endpoint":"https://xuxucorerunnerconfigstoreprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxucorerunnerresourcegroupprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxucorerunnerconfigstoreprodwus","name":"xuxuCoreRunnerConfigStoreProdWus","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T18:14:42+00:00","endpoint":"https://xuxumovetest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxumovetest","name":"xuxumovetest","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-22T21:58:58+00:00","endpoint":"https://xuxutest2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxutest2","name":"xuxutest2","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-01-23T22:43:48+00:00","endpoint":"https://xuxuteststore.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuteststore","name":"xuxuteststore","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-29T23:05:33+00:00","endpoint":"https://yijia03.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijia03","name":"yijia03","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-12T00:07:48+00:00","endpoint":"https://yijia04.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijia04","name":"yijia04","location":"westus","tags":{"v1":"g1"}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-05-07T00:14:48+00:00","endpoint":"https://yijiaascii.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiaascii","name":"yijiaascii","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-11T20:24:11+00:00","endpoint":"https://yijiaskutest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiaskutest","name":"yijiaskutest","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-16T22:06:51+00:00","endpoint":"https://appconfigspringhubdemo.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfigspringhubdemo","name":"AppConfigSpringHubDemo","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-10T16:35:08+00:00","endpoint":"https://appconvertappconfig.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconvertsample/providers/Microsoft.AppConfiguration/configurationStores/appconvertappconfig","name":"AppConvertAppConfig","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-02T21:20:00+00:00","endpoint":"https://avani.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avani","name":"avani","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-06-25T21:06:34+00:00","endpoint":"https://clitest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/clitest","name":"clitest","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-31T00:58:21+00:00","endpoint":"https://destination4dcuuqkdqkajy.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destination4dcuuqkdqkajy","name":"Destination000003","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-03T20:02:51+00:00","endpoint":"https://jiyu-test2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test2","name":"jiyu-test2","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-12T18:43:35+00:00","endpoint":"https://minint-appe4b4-coreprodeus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodeus","name":"MININT-APPE4B4-CoreProdEUS","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"190d4922-5806-460b-a4b2-97bc3d3d5e91","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T18:47:29+00:00","endpoint":"https://minint-appe4b4-funcprodeus-2019-11-07--18-47-12-71.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodeus-2019-11-07--18-47-12-71","name":"MININT-APPE4B4-FuncProdEUS-2019-11-07--18-47-12-71","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"2aa5f431-20d4-4bfd-93d4-59a14b0ad4bf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T18:52:43+00:00","endpoint":"https://minint-appe4b4-funcprodeus-2019-11-07--18-52-37-32.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodeus-2019-11-07--18-52-37-32","name":"MININT-APPE4B4-FuncProdEUS-2019-11-07--18-52-37-32","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T22:25:30+00:00","endpoint":"https://recao1002.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1002","name":"recao1002","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-31T00:58:03+00:00","endpoint":"https://sourcea4yseu3i3vvlmwdnee.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcea4yseu3i3vvlmwdnee","name":"Source000002","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-27T00:05:14+00:00","endpoint":"https://vijay-eus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-shoebox/providers/Microsoft.AppConfiguration/configurationStores/vijay-eus","name":"vijay-eus","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-13T19:25:01+00:00","endpoint":"https://webscoutscantarget.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/webscoutscantarget","name":"WebScoutScanTarget","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-01T22:47:38+00:00","endpoint":"https://jiyu-test.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-rg/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test","name":"jiyu-test","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T01:03:58+00:00","endpoint":"https://minint-appe4b4-coreprodneu.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodneu/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodneu","name":"MININT-APPE4B4-CoreProdNEU","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T22:23:50+00:00","endpoint":"https://minint-appe4b4-funcprodneu-2019-09-10--22-23-34-92.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodneu/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodneu-2019-09-10--22-23-34-92","name":"MININT-APPE4B4-FuncProdNEU-2019-09-10--22-23-34-92","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T16:55:20+00:00","endpoint":"https://a-----a.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/a-----a","name":"a-----a","location":"westus2","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-21T21:53:17+00:00","endpoint":"https://recao1021.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1021","name":"recao1021","location":"westus2","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:16:56+00:00","endpoint":"https://recao11062.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao11062","name":"recao11062","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-26T23:21:29+00:00","endpoint":"https://recao926.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao926","name":"recao926","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T18:27:25+00:00","endpoint":"https://recao9302.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao9302","name":"recao9302","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-21T00:29:25+00:00","endpoint":"https://storeincanary.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/storeincanary","name":"StoreInCanary","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T19:32:12+00:00","endpoint":"https://testmametcal.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/testmametcal","name":"testMaMetcal","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-11T00:49:38+00:00","endpoint":"https://testnotification.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuawan/providers/Microsoft.AppConfiguration/configurationStores/testnotification","name":"testNotification","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-21T21:59:54+00:00","endpoint":"https://vijay-canary.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-canary","name":"vijay-canary","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:14:46+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-14-39-96.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-14-39-96","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-14-39-96","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:24:50+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-24-39-94.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-24-39-94","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-24-39-94","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:28:17+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-28-06-97.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-28-06-97","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-28-06-97","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:54:39+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-54-23-15.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-54-23-15","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-54-23-15","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"38915f7f-0cd2-482e-ac9d-0e681c4b203f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:58:00+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-57-49-91.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-57-49-91","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-57-49-91","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"4f4c18c5-1b04-43b9-97a7-e9922410c239","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:59:35+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-59-29-62.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-59-29-62","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-59-29-62","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T23:08:22+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--23-08-02-34.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--23-08-02-34","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--23-08-02-34","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"d2845735-ccfd-4f96-a886-09dbb9261374","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T23:15:53+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--23-15-39-49.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--23-15-39-49","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--23-15-39-49","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"f1e569c4-7d92-4162-9cdf-cfdb87ac1b07","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T23:20:15+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--23-19-21-37.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--23-19-21-37","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--23-19-21-37","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T23:24:24+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--23-24-21-30.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--23-24-21-30","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--23-24-21-30","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T00:07:56+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--00-07-53-08.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--00-07-53-08","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--00-07-53-08","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T00:09:40+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--00-09-28-97.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--00-09-28-97","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--00-09-28-97","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T00:39:21+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--00-39-15-58.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--00-39-15-58","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--00-39-15-58","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T00:40:23+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--00-39-42-19.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--00-39-42-19","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--00-39-42-19","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T00:45:15+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--00-45-04-57.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--00-45-04-57","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--00-45-04-57","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T07:27:03+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--07-26-51-98.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--07-26-51-98","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--07-26-51-98","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T07:44:39+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--07-44-28-21.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--07-44-28-21","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--07-44-28-21","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"3e6edb5e-37ca-427c-96dd-6155e6feac0b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T17:55:10+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--17-54-54-78.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--17-54-54-78","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--17-54-54-78","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"ef93d7e9-4369-4233-a862-1b2dd924ce0d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:05:57+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-05-51-33.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-05-51-33","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-05-51-33","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"66df8b89-6bc0-4118-92f5-3fff26ead195","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:08:03+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-07-57-83.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-07-57-83","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-07-57-83","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"62eda3e9-f28f-4a67-8009-b74c5a70c550","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:09:38+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-09-26-85.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-09-26-85","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-09-26-85","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:13:03+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-12-57-58.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-12-57-58","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-12-57-58","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"7a740dcc-d783-4b31-93c6-e7535df8de87","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:14:41+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-14-35-46.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-14-35-46","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-14-35-46","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"0acec9e9-e1dd-4147-b971-4f1b4a7e00ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:15:35+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--19-15-19-18.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--19-15-19-18","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--19-15-19-18","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-21T18:35:42+00:00","endpoint":"https://xuxu-movetest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-movetest","name":"xuxu-movetest","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-30T23:17:20+00:00","endpoint":"https://xuxuaad.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuaad","name":"xuxuAAD","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T21:26:01+00:00","endpoint":"https://billingtest.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/billingtest","name":"billingtest","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T22:48:42+00:00","endpoint":"https://garywang-cuseuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-cuseuap","name":"garywang-cuseuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-20T20:22:13+00:00","endpoint":"https://garywang-cuseuap2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-cuseuap2","name":"garywang-cuseuap2","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-30T19:39:11+00:00","endpoint":"https://garywang-vnet.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywang-vm-rg/providers/Microsoft.AppConfiguration/configurationStores/garywang-vnet","name":"garywang-vnet","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-19T22:08:42+00:00","endpoint":"https://jiyu-ceuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-ceuap","name":"jiyu-ceuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:06:04+00:00","endpoint":"https://recao1106.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1106","name":"recao1106","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-15T22:27:00+00:00","endpoint":"https://vijay-cuseuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-cuseuap","name":"vijay-cuseuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T21:55:52+00:00","endpoint":"https://vijay-sb.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-sb","name":"vijay-sb","location":"centraluseuap","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-10-01&%24skiptoken=1ZTdasIwFMffJYxd7dg21hUFGUUKu3AqWtl1kh41liYhH04nvvtaN2SvUM5VOCTkx%2f%2fjShSe%2fVyq2pHJlXwWm3JWLMp1Pt9uyIQcvDduEkUNU2yPDSo%2fYN%2fB4kDoJnKBO2Gl8VIrF2VZNWI8foUMqwpSRAFc4BhGVCQJz0acD7PIWH2SFVoXfUhhtdM7P8iNmWm1k%2ftgWfdUJP6fNl5bdG%2fMSDi199r9lMbJGJIY4uT5ydXSlLpGNT2Hc0jIC%2bnp9y%2fyKNnhb1qMTom%2bSXBncHXw6HyLUOT9Q%2fjC1tM6eCeY8szusQNZLNfle7FdL1dFvzLRSCWVB2YMpjyFXVCiTWClMMA9RPE9R0Ap0CEMUxjTh%2fNov0gtCqaTmHYN8Os7WmzzVb8gugpjrGoRHiXWP4iTPLILOE5utx8%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '78845' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - 439cd092-b98f-4f92-86da-b59e0be9bdb2 + - 47c2f34d-4dab-4833-af80-7603ab2c32f8 + - 6292f01e-0b3b-4090-a106-551ebe621dce + - 88dc5331-07e7-47a6-93cc-62f5678418f7 + - 65903c75-7dd3-42bc-acca-f3cbaca0c59f + - 91c6b2ed-e65b-4ba8-8f94-561ab7a3f69c + - e7c86382-0b37-4bd0-a9ce-c0ef920eb64e + - 975fc2bf-868e-4c62-89b1-21c3359aff90 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appconfig credential list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Destination000003/ListKeys?api-version=2019-10-01 + response: + body: + string: '{"value":[{"id":"wDaB-l0-s0:Ub6RFfz2UdnVcejkGcDg","name":"Primary","value":"LwoycQAXGuRd5mEWkQiIScfmQ6dbr619AQUDrlksK50=","connectionString":"Endpoint=https://destination4dcuuqkdqkajy.azconfig.io;Id=wDaB-l0-s0:Ub6RFfz2UdnVcejkGcDg;Secret=LwoycQAXGuRd5mEWkQiIScfmQ6dbr619AQUDrlksK50=","lastModified":"2019-12-31T00:58:20+00:00","readOnly":false},{"id":"QEFP-l0-s0:Cflv8EI1wS/usHRE7kl7","name":"Secondary","value":"Wk6qyqsaVFrQDRU++bRvZgDE2DJ57ynAqOYqUWL+VVU=","connectionString":"Endpoint=https://destination4dcuuqkdqkajy.azconfig.io;Id=QEFP-l0-s0:Cflv8EI1wS/usHRE7kl7;Secret=Wk6qyqsaVFrQDRU++bRvZgDE2DJ57ynAqOYqUWL+VVU=","lastModified":"2019-12-31T00:58:20+00:00","readOnly":false},{"id":"lha9-l0-s0:kvvXHPdYDpmo716DZdvv","name":"Primary + Read Only","value":"ervdmoLnIRjRfgsmKZi1bxl0UKq+BsE3r3nsG5omhB0=","connectionString":"Endpoint=https://destination4dcuuqkdqkajy.azconfig.io;Id=lha9-l0-s0:kvvXHPdYDpmo716DZdvv;Secret=ervdmoLnIRjRfgsmKZi1bxl0UKq+BsE3r3nsG5omhB0=","lastModified":"2019-12-31T00:58:20+00:00","readOnly":true},{"id":"pPBW-l0-s0:NplYbYqRWFTKrE/oAo0D","name":"Secondary + Read Only","value":"Revr1dsH0E8u1hsUSoOYarhydyVd3pVfiLcRya+riig=","connectionString":"Endpoint=https://destination4dcuuqkdqkajy.azconfig.io;Id=pPBW-l0-s0:NplYbYqRWFTKrE/oAo0D;Secret=Revr1dsH0E8u1hsUSoOYarhydyVd3pVfiLcRya+riig=","lastModified":"2019-12-31T00:58:20+00:00","readOnly":true}],"nextLink":null}' + headers: + cache-control: + - no-cache + content-length: + - '1389' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:37 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/Color?label=v1&fields=&api-version=1.0 + response: + body: + string: '' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-length: + - '0' + date: + - Tue, 31 Dec 2019 00:58:38 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + status: + code: 404 + message: Not Found +- request: + body: '{"content_type": null, "value": "Red", "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '52' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-None-Match: + - '"*"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 1sT9hxGuBAZWDoyiQ2TpFhUO9+AUxgExwmjgAvoxfG0= + x-ms-date: + - Dec, 31 2019 00:58:38 GMT + method: PUT + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/Color?label=v1&api-version=1.0 + response: + body: + string: '{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:38 GMT + etag: + - '"QjOa6IE9TXRO0wgSYctpnFZpvzG"' + last-modified: + - Tue, 31 Dec 2019 00:58:38 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDQ=;sn=956804 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:38 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/Color?label=v2&fields=&api-version=1.0 + response: + body: + string: '' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-length: + - '0' + date: + - Tue, 31 Dec 2019 00:58:38 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + status: + code: 404 + message: Not Found +- request: + body: '{"content_type": null, "value": "Blue", "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '53' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-None-Match: + - '"*"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - wSIIvvMC4vAk+NXMjAgsRexJSVfWnHUBPbhbKxey7hE= + x-ms-date: + - Dec, 31 2019 00:58:38 GMT + method: PUT + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/Color?label=v2&api-version=1.0 + response: + body: + string: '{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:38 GMT + etag: + - '"4PTxAbMGNgT2MoamZByrCUETZq7"' + last-modified: + - Tue, 31 Dec 2019 00:58:39 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDU=;sn=956805 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:38 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&fields=&api-version=1.0 + response: + body: + string: '' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-length: + - '0' + date: + - Tue, 31 Dec 2019 00:58:39 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + status: + code: 404 + message: Not Found +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-None-Match: + - '"*"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:39 GMT + method: PUT + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + response: + body: + string: '{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:39 GMT + etag: + - '"OAu94YW2obJtmCB04EE3wr3jFJ7"' + last-modified: + - Tue, 31 Dec 2019 00:58:39 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDY=;sn=956806 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:39 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&fields=&api-version=1.0 + response: + body: + string: '' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-length: + - '0' + date: + - Tue, 31 Dec 2019 00:58:39 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + status: + code: 404 + message: Not Found +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-None-Match: + - '"*"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:39 GMT + method: PUT + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + response: + body: + string: '{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:40 GMT + etag: + - '"2lq1WZ6c7waV1eFeuPAUSEjJCtK"' + last-modified: + - Tue, 31 Dec 2019 00:58:40 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:40 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"},{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"},{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:40 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:40 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:40 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": null, "value": "Red", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '50' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - RRuSjhDZOX3KEhbLL6KJ66jTsZym2UoRjOklQ3aj5wk= + x-ms-date: + - Dec, 31 2019 00:58:40 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + response: + body: + string: '{"etag":"rcG4iQF3XqgXLPfZcbUPrrwXMaG","key":"Color","label":"DestLabel","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:41+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:41 GMT + etag: + - '"rcG4iQF3XqgXLPfZcbUPrrwXMaG"' + last-modified: + - Tue, 31 Dec 2019 00:58:41 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzNzc=;sn=913377 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": null, "value": "Blue", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '51' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - z7s/2bFY9I62DTRnO9PidfN+N9b8mIApAhhnmIDGhRo= + x-ms-date: + - Dec, 31 2019 00:58:41 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + response: + body: + string: '{"etag":"m1MHON61prVnp9GZNmKWF095E6H","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:41+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:41 GMT + etag: + - '"m1MHON61prVnp9GZNmKWF095E6H"' + last-modified: + - Tue, 31 Dec 2019 00:58:41 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzNzg=;sn=913378 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:41 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + response: + body: + string: '{"etag":"xLlMKqDyQK7fNNeK16r9SVDWxos","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:42+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:41 GMT + etag: + - '"xLlMKqDyQK7fNNeK16r9SVDWxos"' + last-modified: + - Tue, 31 Dec 2019 00:58:42 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzNzk=;sn=913379 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:41 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + response: + body: + string: '{"etag":"1PVPFOLsxxDDUxdq0fsdctxA0hW","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:42+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:41 GMT + etag: + - '"1PVPFOLsxxDDUxdq0fsdctxA0hW"' + last-modified: + - Tue, 31 Dec 2019 00:58:42 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzODA=;sn=913380 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:41 GMT + method: GET + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"1PVPFOLsxxDDUxdq0fsdctxA0hW","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:42+00:00"},{"etag":"m1MHON61prVnp9GZNmKWF095E6H","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:41+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:42 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzODA=;sn=913380 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"1PVPFOLsxxDDUxdq0fsdctxA0hW"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:42 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + response: + body: + string: '{"etag":"1PVPFOLsxxDDUxdq0fsdctxA0hW","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:42+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:42 GMT + etag: + - '"1PVPFOLsxxDDUxdq0fsdctxA0hW"' + last-modified: + - Tue, 31 Dec 2019 00:58:42 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzODE=;sn=913381 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"m1MHON61prVnp9GZNmKWF095E6H"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:42 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + response: + body: + string: '{"etag":"m1MHON61prVnp9GZNmKWF095E6H","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:41+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:42 GMT + etag: + - '"m1MHON61prVnp9GZNmKWF095E6H"' + last-modified: + - Tue, 31 Dec 2019 00:58:41 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzODI=;sn=913382 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:42 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"},{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"},{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:43 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:43 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:43 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": null, "value": "Red", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '50' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - RRuSjhDZOX3KEhbLL6KJ66jTsZym2UoRjOklQ3aj5wk= + x-ms-date: + - Dec, 31 2019 00:58:43 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=&api-version=1.0 + response: + body: + string: '{"etag":"QkN4Q2H7aoQmWhJkz71xf4gV28r","key":"Color","label":null,"content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:43 GMT + etag: + - '"QkN4Q2H7aoQmWhJkz71xf4gV28r"' + last-modified: + - Tue, 31 Dec 2019 00:58:44 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzODM=;sn=913383 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": null, "value": "Blue", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '51' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - z7s/2bFY9I62DTRnO9PidfN+N9b8mIApAhhnmIDGhRo= + x-ms-date: + - Dec, 31 2019 00:58:43 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=&api-version=1.0 + response: + body: + string: '{"etag":"H68ukYphI8PWKC1LfrhZ62j5XRA","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:43 GMT + etag: + - '"H68ukYphI8PWKC1LfrhZ62j5XRA"' + last-modified: + - Tue, 31 Dec 2019 00:58:44 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzODQ=;sn=913384 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:43 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + response: + body: + string: '{"etag":"NQt8w31EQCxfob1lvEarO5u9Lkl","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:44 GMT + etag: + - '"NQt8w31EQCxfob1lvEarO5u9Lkl"' + last-modified: + - Tue, 31 Dec 2019 00:58:44 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzODU=;sn=913385 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:44 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + response: + body: + string: '{"etag":"g6xdKQ4Z4Po3vJuwj996WB51pQu","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:44 GMT + etag: + - '"g6xdKQ4Z4Po3vJuwj996WB51pQu"' + last-modified: + - Tue, 31 Dec 2019 00:58:44 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzODY=;sn=913386 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:44 GMT + method: GET + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"g6xdKQ4Z4Po3vJuwj996WB51pQu","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"},{"etag":"H68ukYphI8PWKC1LfrhZ62j5XRA","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:44 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzODY=;sn=913386 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"g6xdKQ4Z4Po3vJuwj996WB51pQu"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:44 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + response: + body: + string: '{"etag":"g6xdKQ4Z4Po3vJuwj996WB51pQu","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:44 GMT + etag: + - '"g6xdKQ4Z4Po3vJuwj996WB51pQu"' + last-modified: + - Tue, 31 Dec 2019 00:58:44 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzODc=;sn=913387 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"H68ukYphI8PWKC1LfrhZ62j5XRA"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:44 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=&api-version=1.0 + response: + body: + string: '{"etag":"H68ukYphI8PWKC1LfrhZ62j5XRA","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:45 GMT + etag: + - '"H68ukYphI8PWKC1LfrhZ62j5XRA"' + last-modified: + - Tue, 31 Dec 2019 00:58:44 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzODg=;sn=913388 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:45 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"},{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"},{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:45 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:45 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:45 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": null, "value": "Red", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '50' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - RRuSjhDZOX3KEhbLL6KJ66jTsZym2UoRjOklQ3aj5wk= + x-ms-date: + - Dec, 31 2019 00:58:45 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v1&api-version=1.0 + response: + body: + string: '{"etag":"RmUeJ2Ps01DL2vkdl2a6IuYUei9","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:46 GMT + etag: + - '"RmUeJ2Ps01DL2vkdl2a6IuYUei9"' + last-modified: + - Tue, 31 Dec 2019 00:58:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzODk=;sn=913389 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": null, "value": "Blue", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '51' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - z7s/2bFY9I62DTRnO9PidfN+N9b8mIApAhhnmIDGhRo= + x-ms-date: + - Dec, 31 2019 00:58:46 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v2&api-version=1.0 + response: + body: + string: '{"etag":"OYSS3dHi8zhm56ijqfsea28VKh9","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:46 GMT + etag: + - '"OYSS3dHi8zhm56ijqfsea28VKh9"' + last-modified: + - Tue, 31 Dec 2019 00:58:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzOTA=;sn=913390 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:46 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + response: + body: + string: '{"etag":"onfQwPUt8z5Lxn6XYcOrNdweIPD","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:46 GMT + etag: + - '"onfQwPUt8z5Lxn6XYcOrNdweIPD"' + last-modified: + - Tue, 31 Dec 2019 00:58:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzOTE=;sn=913391 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:46 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + response: + body: + string: '{"etag":"Tn2ElyT75LJ3kMVM8RzwRy9CJJo","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:46 GMT + etag: + - '"Tn2ElyT75LJ3kMVM8RzwRy9CJJo"' + last-modified: + - Tue, 31 Dec 2019 00:58:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzOTI=;sn=913392 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:46 GMT + method: GET + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"onfQwPUt8z5Lxn6XYcOrNdweIPD","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"},{"etag":"Tn2ElyT75LJ3kMVM8RzwRy9CJJo","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"},{"etag":"RmUeJ2Ps01DL2vkdl2a6IuYUei9","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"},{"etag":"OYSS3dHi8zhm56ijqfsea28VKh9","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzOTI=;sn=913392 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"onfQwPUt8z5Lxn6XYcOrNdweIPD"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:47 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + response: + body: + string: '{"etag":"onfQwPUt8z5Lxn6XYcOrNdweIPD","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:47 GMT + etag: + - '"onfQwPUt8z5Lxn6XYcOrNdweIPD"' + last-modified: + - Tue, 31 Dec 2019 00:58:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzOTM=;sn=913393 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"Tn2ElyT75LJ3kMVM8RzwRy9CJJo"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:47 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + response: + body: + string: '{"etag":"Tn2ElyT75LJ3kMVM8RzwRy9CJJo","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:47 GMT + etag: + - '"Tn2ElyT75LJ3kMVM8RzwRy9CJJo"' + last-modified: + - Tue, 31 Dec 2019 00:58:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzOTQ=;sn=913394 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"RmUeJ2Ps01DL2vkdl2a6IuYUei9"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:47 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v1&api-version=1.0 + response: + body: + string: '{"etag":"RmUeJ2Ps01DL2vkdl2a6IuYUei9","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:47 GMT + etag: + - '"RmUeJ2Ps01DL2vkdl2a6IuYUei9"' + last-modified: + - Tue, 31 Dec 2019 00:58:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzOTU=;sn=913395 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"OYSS3dHi8zhm56ijqfsea28VKh9"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:47 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v2&api-version=1.0 + response: + body: + string: '{"etag":"OYSS3dHi8zhm56ijqfsea28VKh9","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:47 GMT + etag: + - '"OYSS3dHi8zhm56ijqfsea28VKh9"' + last-modified: + - Tue, 31 Dec 2019 00:58:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzOTY=;sn=913396 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:48 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"},{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"},{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:48 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:48 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:48 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": null, "value": "Red", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '50' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - RRuSjhDZOX3KEhbLL6KJ66jTsZym2UoRjOklQ3aj5wk= + x-ms-date: + - Dec, 31 2019 00:58:48 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + response: + body: + string: '{"etag":"PpiXa3YtsgYvUCFkugGLlpIaHl3","key":"Color","label":"DestLabel","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:49 GMT + etag: + - '"PpiXa3YtsgYvUCFkugGLlpIaHl3"' + last-modified: + - Tue, 31 Dec 2019 00:58:49 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzOTc=;sn=913397 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": null, "value": "Blue", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '51' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - z7s/2bFY9I62DTRnO9PidfN+N9b8mIApAhhnmIDGhRo= + x-ms-date: + - Dec, 31 2019 00:58:49 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + response: + body: + string: '{"etag":"uTI2MOLMeikqJ6jshvbUdpz6nDD","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:49 GMT + etag: + - '"uTI2MOLMeikqJ6jshvbUdpz6nDD"' + last-modified: + - Tue, 31 Dec 2019 00:58:49 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzOTg=;sn=913398 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:49 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + response: + body: + string: '{"etag":"suBILjTn8BvBSqSsX3zYtCLFdgu","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:49 GMT + etag: + - '"suBILjTn8BvBSqSsX3zYtCLFdgu"' + last-modified: + - Tue, 31 Dec 2019 00:58:49 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTMzOTk=;sn=913399 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:49 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + response: + body: + string: '{"etag":"fUK8HCoC7EXYklVdGPGyJF5TazE","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:49 GMT + etag: + - '"fUK8HCoC7EXYklVdGPGyJF5TazE"' + last-modified: + - Tue, 31 Dec 2019 00:58:49 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MDA=;sn=913400 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:49 GMT + method: GET + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"fUK8HCoC7EXYklVdGPGyJF5TazE","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"},{"etag":"uTI2MOLMeikqJ6jshvbUdpz6nDD","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:49 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MDA=;sn=913400 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"fUK8HCoC7EXYklVdGPGyJF5TazE"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:49 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + response: + body: + string: '{"etag":"fUK8HCoC7EXYklVdGPGyJF5TazE","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:50 GMT + etag: + - '"fUK8HCoC7EXYklVdGPGyJF5TazE"' + last-modified: + - Tue, 31 Dec 2019 00:58:49 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MDE=;sn=913401 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"uTI2MOLMeikqJ6jshvbUdpz6nDD"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:50 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + response: + body: + string: '{"etag":"uTI2MOLMeikqJ6jshvbUdpz6nDD","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:50 GMT + etag: + - '"uTI2MOLMeikqJ6jshvbUdpz6nDD"' + last-modified: + - Tue, 31 Dec 2019 00:58:49 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MDI=;sn=913402 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:50 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"},{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"},{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:50 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:50 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:51 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": null, "value": "Red", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '50' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - RRuSjhDZOX3KEhbLL6KJ66jTsZym2UoRjOklQ3aj5wk= + x-ms-date: + - Dec, 31 2019 00:58:51 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=&api-version=1.0 + response: + body: + string: '{"etag":"2IS5lrf8PbQlgb4Y9HLLkcJshzu","key":"Color","label":null,"content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:51 GMT + etag: + - '"2IS5lrf8PbQlgb4Y9HLLkcJshzu"' + last-modified: + - Tue, 31 Dec 2019 00:58:52 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MDM=;sn=913403 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": null, "value": "Blue", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '51' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - z7s/2bFY9I62DTRnO9PidfN+N9b8mIApAhhnmIDGhRo= + x-ms-date: + - Dec, 31 2019 00:58:51 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=&api-version=1.0 + response: + body: + string: '{"etag":"GzTCyEo4wxvKvO33QYzjMGJEGzb","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:51 GMT + etag: + - '"GzTCyEo4wxvKvO33QYzjMGJEGzb"' + last-modified: + - Tue, 31 Dec 2019 00:58:52 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MDQ=;sn=913404 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:51 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + response: + body: + string: '{"etag":"I2W1j6Hg3wFikkK5MRXOn6wJUNh","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:51 GMT + etag: + - '"I2W1j6Hg3wFikkK5MRXOn6wJUNh"' + last-modified: + - Tue, 31 Dec 2019 00:58:52 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MDU=;sn=913405 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:51 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + response: + body: + string: '{"etag":"OwKOosGdsgphZlWD6H93VXHeQeA","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:51 GMT + etag: + - '"OwKOosGdsgphZlWD6H93VXHeQeA"' + last-modified: + - Tue, 31 Dec 2019 00:58:52 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MDY=;sn=913406 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:52 GMT + method: GET + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OwKOosGdsgphZlWD6H93VXHeQeA","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"},{"etag":"GzTCyEo4wxvKvO33QYzjMGJEGzb","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:52 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MDY=;sn=913406 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"OwKOosGdsgphZlWD6H93VXHeQeA"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:52 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + response: + body: + string: '{"etag":"OwKOosGdsgphZlWD6H93VXHeQeA","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:52 GMT + etag: + - '"OwKOosGdsgphZlWD6H93VXHeQeA"' + last-modified: + - Tue, 31 Dec 2019 00:58:52 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MDc=;sn=913407 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"GzTCyEo4wxvKvO33QYzjMGJEGzb"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:52 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=&api-version=1.0 + response: + body: + string: '{"etag":"GzTCyEo4wxvKvO33QYzjMGJEGzb","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:52 GMT + etag: + - '"GzTCyEo4wxvKvO33QYzjMGJEGzb"' + last-modified: + - Tue, 31 Dec 2019 00:58:52 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MDg=;sn=913408 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:53 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"},{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"},{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:53 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:53 GMT + method: GET + uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:53 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": null, "value": "Red", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '50' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - RRuSjhDZOX3KEhbLL6KJ66jTsZym2UoRjOklQ3aj5wk= + x-ms-date: + - Dec, 31 2019 00:58:53 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v1&api-version=1.0 + response: + body: + string: '{"etag":"RzfA9hOtDvzjl3kFmY2TRcxSBf7","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:54 GMT + etag: + - '"RzfA9hOtDvzjl3kFmY2TRcxSBf7"' + last-modified: + - Tue, 31 Dec 2019 00:58:54 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MDk=;sn=913409 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": null, "value": "Blue", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '51' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - z7s/2bFY9I62DTRnO9PidfN+N9b8mIApAhhnmIDGhRo= + x-ms-date: + - Dec, 31 2019 00:58:54 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v2&api-version=1.0 + response: + body: + string: '{"etag":"45v679Cnuf9iv26SMAJs55nkXKj","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:54 GMT + etag: + - '"45v679Cnuf9iv26SMAJs55nkXKj"' + last-modified: + - Tue, 31 Dec 2019 00:58:54 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MTA=;sn=913410 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:54 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + response: + body: + string: '{"etag":"UOSEURn8Ps6nbzXF8KeGhKpAYxX","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:54 GMT + etag: + - '"UOSEURn8Ps6nbzXF8KeGhKpAYxX"' + last-modified: + - Tue, 31 Dec 2019 00:58:54 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MTE=;sn=913411 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: '{"content_type": "application/vnd.microsoft.appconfig.ff+json;charset=utf-8", + "value": "{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": + {\"client_filters\": []}}", "tags": {}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '205' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= + x-ms-date: + - Dec, 31 2019 00:58:54 GMT + method: PUT + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + response: + body: + string: '{"etag":"rUIy4aZJbh0TVDtjn2TTXnrOiDY","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:54 GMT + etag: + - '"rUIy4aZJbh0TVDtjn2TTXnrOiDY"' + last-modified: + - Tue, 31 Dec 2019 00:58:54 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MTI=;sn=913412 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json; + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:54 GMT + method: GET + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + response: + body: + string: '{"items":[{"etag":"UOSEURn8Ps6nbzXF8KeGhKpAYxX","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"},{"etag":"rUIy4aZJbh0TVDtjn2TTXnrOiDY","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"},{"etag":"RzfA9hOtDvzjl3kFmY2TRcxSBf7","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"},{"etag":"45v679Cnuf9iv26SMAJs55nkXKj","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}]}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:54 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MTI=;sn=913412 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"UOSEURn8Ps6nbzXF8KeGhKpAYxX"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:54 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + response: + body: + string: '{"etag":"UOSEURn8Ps6nbzXF8KeGhKpAYxX","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:55 GMT + etag: + - '"UOSEURn8Ps6nbzXF8KeGhKpAYxX"' + last-modified: + - Tue, 31 Dec 2019 00:58:54 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MTM=;sn=913413 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"rUIy4aZJbh0TVDtjn2TTXnrOiDY"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:55 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + response: + body: + string: '{"etag":"rUIy4aZJbh0TVDtjn2TTXnrOiDY","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": + []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:55 GMT + etag: + - '"rUIy4aZJbh0TVDtjn2TTXnrOiDY"' + last-modified: + - Tue, 31 Dec 2019 00:58:54 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MTQ=;sn=913414 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"RzfA9hOtDvzjl3kFmY2TRcxSBf7"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:55 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v1&api-version=1.0 + response: + body: + string: '{"etag":"RzfA9hOtDvzjl3kFmY2TRcxSBf7","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:55 GMT + etag: + - '"RzfA9hOtDvzjl3kFmY2TRcxSBf7"' + last-modified: + - Tue, 31 Dec 2019 00:58:54 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MTU=;sn=913415 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/vnd.microsoft.appconfig.kv+json; + If-Match: + - '"45v679Cnuf9iv26SMAJs55nkXKj"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Dec, 31 2019 00:58:55 GMT + method: DELETE + uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v2&api-version=1.0 + response: + body: + string: '{"etag":"45v679Cnuf9iv26SMAJs55nkXKj","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + headers: + access-control-allow-credentials: + - 'true' + access-control-allow-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + access-control-allow-methods: + - GET, PUT, POST, DELETE, PATCH, OPTIONS + access-control-allow-origin: + - '*' + access-control-expose-headers: + - DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, + Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-command-name, + x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, + If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, + Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + connection: + - keep-alive + content-type: + - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 + date: + - Tue, 31 Dec 2019 00:58:55 GMT + etag: + - '"45v679Cnuf9iv26SMAJs55nkXKj"' + last-modified: + - Tue, 31 Dec 2019 00:58:54 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NTotMSM5MTM0MTY=;sn=913416 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/test_appconfig_commands.py b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/test_appconfig_commands.py index 1f2dae37952..c01f0ebb031 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/test_appconfig_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/test_appconfig_commands.py @@ -17,6 +17,7 @@ from azure.cli.testsdk.checkers import NoneCheck TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) +FEATURE_FLAG_PREFIX = ".appconfig.featureflag/" class AppConfigMgmtScenarioTest(ScenarioTest): @@ -493,6 +494,198 @@ def test_azconfig_import_export_naming_conventions(self, resource_group, locatio assert exported_prop_file == exported_kv_prop_file +class AppConfigToAppConfigImportExportScenarioTest(ScenarioTest): + + @ResourceGroupPreparer(parameter_name_for_location='location') + def test_appconfig_to_appconfig_import_export(self, resource_group, location): + src_config_store_name = self.create_random_name(prefix='Source', length=24) + dest_config_store_name = self.create_random_name(prefix='Destination', length=24) + + location = 'eastus' + self.kwargs.update({ + 'config_store_name': src_config_store_name, + 'rg_loc': location, + 'rg': resource_group + }) + _create_config_store(self, self.kwargs) + + # Get src connection string + credential_list = self.cmd( + 'appconfig credential list -n {config_store_name} -g {rg}').get_output_in_json() + self.kwargs.update({ + 'src_connection_string': credential_list[0]['connectionString'], + 'config_store_name': dest_config_store_name + }) + _create_config_store(self, self.kwargs) + + # Get dest connection string + credential_list = self.cmd( + 'appconfig credential list -n {config_store_name} -g {rg}').get_output_in_json() + self.kwargs.update({ + 'dest_connection_string': credential_list[0]['connectionString'] + }) + + # Add duplicate keys with different labels in src config store + entry_key = "Color" + entry_value = "Red" + entry_label = 'v1' + self.kwargs.update({ + 'key': entry_key, + 'value': entry_value, + 'label': entry_label + }) + # add a new key-value entry + self.cmd('appconfig kv set --connection-string {src_connection_string} --key {key} --value {value} --label {label} -y', + checks=[self.check('key', entry_key), + self.check('value', entry_value), + self.check('label', entry_label)]) + # add a new label for same key + updated_value = "Blue" + updated_label = 'v2' + self.kwargs.update({ + 'value': updated_value, + 'label': updated_label + }) + self.cmd('appconfig kv set --connection-string {src_connection_string} --key {key} --value {value} --label {label} -y', + checks=[self.check('key', entry_key), + self.check('value', updated_value), + self.check('label', updated_label)]) + + # Add duplicate features with different labels in src config store + entry_feature = 'Beta' + internal_feature_key = FEATURE_FLAG_PREFIX + entry_feature + self.kwargs.update({ + 'feature': entry_feature, + 'label': entry_label + }) + # add a new feature flag entry + self.cmd('appconfig feature set --connection-string {src_connection_string} --feature {feature} --label {label} -y', + checks=[self.check('key', entry_feature), + self.check('label', entry_label)]) + + # add a new label for same feature + self.kwargs.update({ + 'label': updated_label + }) + self.cmd('appconfig feature set --connection-string {src_connection_string} --feature {feature} --label {label} -y', + checks=[self.check('key', entry_feature), + self.check('label', updated_label)]) + + # import all kv and features from src config store to dest config store + any_key_pattern = '*' + any_label_pattern = '*' + null_label = None + dest_label = 'DestLabel' + self.kwargs.update({ + 'import_source': 'appconfig', + 'label': dest_label, + 'src_label': any_label_pattern + }) + + # Importing with a new label should only import one KV and one feature as src labels will be overwritten in dest + self.cmd( + 'appconfig kv import --connection-string {dest_connection_string} -s {import_source} --src-connection-string {src_connection_string} --src-label {src_label} --label {label} -y') + + # Check kv and features that were imported to dest config store + # We can check by deleting since its better to clear dest config store for next import test + self.kwargs.update({ + 'key': any_key_pattern, + 'label': any_label_pattern + }) + deleted_kvs = self.cmd('appconfig kv delete --connection-string {dest_connection_string} --key {key} --label {label} -y', + checks=[self.check('[0].key', internal_feature_key), + self.check('[0].label', dest_label), + self.check('[1].key', entry_key), + self.check('[1].value', updated_value), + self.check('[1].label', dest_label)]).get_output_in_json() + assert len(deleted_kvs) == 2 + + # Not specifying a label or preserve-labels should assign null label and import only one KV and one feature + self.cmd( + 'appconfig kv import --connection-string {dest_connection_string} -s {import_source} --src-connection-string {src_connection_string} --src-label {src_label} -y') + deleted_kvs = self.cmd('appconfig kv delete --connection-string {dest_connection_string} --key {key} --label {label} -y', + checks=[self.check('[0].key', internal_feature_key), + self.check('[0].label', null_label), + self.check('[1].key', entry_key), + self.check('[1].value', updated_value), + self.check('[1].label', null_label)]).get_output_in_json() + assert len(deleted_kvs) == 2 + + # Preserving labels and importing all kv and all features + self.cmd( + 'appconfig kv import --connection-string {dest_connection_string} -s {import_source} --src-connection-string {src_connection_string} --src-label {src_label} --preserve-labels -y') + deleted_kvs = self.cmd('appconfig kv delete --connection-string {dest_connection_string} --key {key} --label {label} -y', + checks=[self.check('[0].key', internal_feature_key), + self.check('[0].label', entry_label), + self.check('[1].key', internal_feature_key), + self.check('[1].label', updated_label), + self.check('[2].key', entry_key), + self.check('[2].value', entry_value), + self.check('[2].label', entry_label), + self.check('[3].key', entry_key), + self.check('[3].value', updated_value), + self.check('[3].label', updated_label)]).get_output_in_json() + assert len(deleted_kvs) == 4 + + # Error when both label and preserve-labels is specified + self.kwargs.update({ + 'label': dest_label + }) + with self.assertRaisesRegexp(CLIError, "Import failed! Please provide only one of these arguments: 'label' or 'preserve-labels'."): + self.cmd('appconfig kv import --connection-string {dest_connection_string} -s {import_source} --src-connection-string {src_connection_string} --src-label {src_label} --label {label} --preserve-labels -y') + + # Export tests from src config store to dest config store + # Exporting with a new label should only export one KV and one feature as src labels will be overwritten in dest + self.cmd( + 'appconfig kv export --connection-string {src_connection_string} -d {import_source} --dest-connection-string {dest_connection_string} --label {src_label} --dest-label {label} -y') + # Check kv and features that were exported to dest config store + # We can check by deleting since its better to clear dest config store for next export test + self.kwargs.update({ + 'label': any_label_pattern + }) + deleted_kvs = self.cmd('appconfig kv delete --connection-string {dest_connection_string} --key {key} --label {label} -y', + checks=[self.check('[0].key', internal_feature_key), + self.check('[0].label', dest_label), + self.check('[1].key', entry_key), + self.check('[1].value', updated_value), + self.check('[1].label', dest_label)]).get_output_in_json() + assert len(deleted_kvs) == 2 + + # Not specifying a label or preserve-labels should assign null label and export only one KV and one feature + self.cmd( + 'appconfig kv export --connection-string {src_connection_string} -d {import_source} --dest-connection-string {dest_connection_string} --label {src_label} -y') + deleted_kvs = self.cmd('appconfig kv delete --connection-string {dest_connection_string} --key {key} --label {label} -y', + checks=[self.check('[0].key', internal_feature_key), + self.check('[0].label', null_label), + self.check('[1].key', entry_key), + self.check('[1].value', updated_value), + self.check('[1].label', null_label)]).get_output_in_json() + assert len(deleted_kvs) == 2 + + # Preserving labels and exporting all kv and all features + self.cmd( + 'appconfig kv export --connection-string {src_connection_string} -d {import_source} --dest-connection-string {dest_connection_string} --label {src_label} --preserve-labels -y') + deleted_kvs = self.cmd('appconfig kv delete --connection-string {dest_connection_string} --key {key} --label {label} -y', + checks=[self.check('[0].key', internal_feature_key), + self.check('[0].label', entry_label), + self.check('[1].key', internal_feature_key), + self.check('[1].label', updated_label), + self.check('[2].key', entry_key), + self.check('[2].value', entry_value), + self.check('[2].label', entry_label), + self.check('[3].key', entry_key), + self.check('[3].value', updated_value), + self.check('[3].label', updated_label)]).get_output_in_json() + assert len(deleted_kvs) == 4 + + # Error when both dest-label and preserve-labels is specified + self.kwargs.update({ + 'label': dest_label + }) + with self.assertRaisesRegexp(CLIError, "Export failed! Please provide only one of these arguments: 'dest-label' or 'preserve-labels'."): + self.cmd('appconfig kv export --connection-string {src_connection_string} -d {import_source} --dest-connection-string {dest_connection_string} --label {src_label} --dest-label {label} --preserve-labels -y') + + class AppConfigFeatureScenarioTest(ScenarioTest): @ResourceGroupPreparer(parameter_name_for_location='location') def test_azconfig_feature(self, resource_group, location): From 48762ef0d66f7b0b8d65445bb318939a71fa0eb7 Mon Sep 17 00:00:00 2001 From: Avani Gupta Date: Thu, 2 Jan 2020 16:01:25 -0800 Subject: [PATCH 3/6] Updating arguments in help file --- src/azure-cli/azure/cli/command_modules/appconfig/_help.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/_help.py b/src/azure-cli/azure/cli/command_modules/appconfig/_help.py index 62cf965b55d..ba4c9dc2219 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/_help.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/_help.py @@ -97,11 +97,11 @@ - name: Import all keys with label test and apply test2 label excluding feature flags from an App Configuration. text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-label test --label test2 --src-name AnotherAppConfiguration --skip-features - name: Import all keys and feature flags with all labels to another App Configuration. - text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --key * --src-label * --preserve-labels + text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --src-key * --src-label * --preserve-labels - name: Import all keys and feature flags with all labels to another App Configuration and overwrite labels. - text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --key * --src-label * --label ImportedKeys + text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --src-key * --src-label * --label ImportedKeys - name: Import all keys and feature flags with all labels to another App Configuration and assign null label. - text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --key * --src-label * + text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --src-key * --src-label * """ helps['appconfig kv list'] = """ From 590a319f126b05ce5cd53e6dbfc0d9041e858eb3 Mon Sep 17 00:00:00 2001 From: Avani Gupta Date: Fri, 3 Jan 2020 12:41:05 -0800 Subject: [PATCH 4/6] Update history and test recording --- src/azure-cli/HISTORY.rst | 4 + ..._appconfig_to_appconfig_import_export.yaml | 1086 ++++++++--------- 2 files changed, 547 insertions(+), 543 deletions(-) diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index 9b5d88c1d25..1236fd18094 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +**AppConfig** + +* Support import/export of all labels from appconfig to appconfig + 2.0.79 ++++++ diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/recordings/test_appconfig_to_appconfig_import_export.yaml b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/recordings/test_appconfig_to_appconfig_import_export.yaml index 9d6180a19fb..4b2bebea8eb 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/recordings/test_appconfig_to_appconfig_import_export.yaml +++ b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/recordings/test_appconfig_to_appconfig_import_export.yaml @@ -18,17 +18,17 @@ interactions: - -n -g -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Source000002?api-version=2019-10-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2019-12-31T00:58:01.2944173+00:00","endpoint":"https://Source000002.azconfig.io"},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Source000002","name":"Source000002","location":"eastus","tags":{}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2020-01-03T20:38:58.8072443+00:00","endpoint":"https://Source000002.azconfig.io"},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Source000002","name":"Source000002","location":"eastus","tags":{}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/64fac12b-7514-a8e4-e228-d37f09c8ed69?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/a3b048c3-e654-bef9-bd13-962f029bd7df?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -36,7 +36,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:01 GMT + - Fri, 03 Jan 2020 20:38:58 GMT expires: - '-1' pragma: @@ -67,15 +67,15 @@ interactions: - -n -g -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/64fac12b-7514-a8e4-e228-d37f09c8ed69?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/a3b048c3-e654-bef9-bd13-962f029bd7df?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/64fac12b-7514-a8e4-e228-d37f09c8ed69","name":"64fac12b-7514-a8e4-e228-d37f09c8ed69","status":"Succeeded","error":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/a3b048c3-e654-bef9-bd13-962f029bd7df","name":"a3b048c3-e654-bef9-bd13-962f029bd7df","status":"Succeeded","error":null}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/64fac12b-7514-a8e4-e228-d37f09c8ed69?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/a3b048c3-e654-bef9-bd13-962f029bd7df?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:11 GMT + - Fri, 03 Jan 2020 20:39:09 GMT expires: - '-1' pragma: @@ -116,12 +116,12 @@ interactions: - -n -g -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Source000002?api-version=2019-10-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-31T00:58:03+00:00","endpoint":"https://sourcea4yseu3i3vvlmwdnee.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcea4yseu3i3vvlmwdnee","name":"Source000002","location":"eastus","tags":{}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-01-03T20:39:05+00:00","endpoint":"https://sourcenf4262o6ibwnfc7c55.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcenf4262o6ibwnfc7c55","name":"Source000002","location":"eastus","tags":{}}' headers: cache-control: - no-cache @@ -130,9 +130,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:12 GMT + - Fri, 03 Jan 2020 20:39:09 GMT etag: - - W/"1c00e413-0000-0100-0000-5e0a9d1a0000" + - W/"2300fc80-0000-0100-0000-5e0fa6690000" expires: - '-1' pragma: @@ -165,7 +165,7 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -182,7 +182,7 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"d3cc05e6-d490-4bc6-a936-2b85b74d0a20","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T01:32:57+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-07--01-32-52-78.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-07--01-32-52-78","name":"MININT-APPE4B4-FuncProdWUS-2019-11-07--01-32-52-78","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"ea9703e8-d942-4a91-ae6e-b3302ea5c256","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T01:37:25+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-07--01-37-15-73.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-07--01-37-15-73","name":"MININT-APPE4B4-FuncProdWUS-2019-11-07--01-37-15-73","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-27T22:56:22+00:00","endpoint":"https://minint-appe4b4-msiprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-integrationrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-msiprodwus","name":"MININT-APPE4B4-MSIProdWUS","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-23T01:44:20+00:00","endpoint":"https://notification-test.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/notification-test","name":"notification-test","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2018-08-30T06:11:28+00:00","endpoint":"https://rprgprodwus_2018-08-30_06-11-24-92.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerrprgprodwus_2018-08-30_06-11-24-92/providers/Microsoft.AppConfiguration/configurationStores/rprgprodwus_2018-08-30_06-11-24-92","name":"RPRGProdWus_2018-08-30_06-11-24-92","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T18:46:09+00:00","endpoint":"https://sample.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/sample","name":"sample","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2018-09-19T19:02:56+00:00","endpoint":"https://store_2018-09-19_12-02-53.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuai-test-rg2/providers/Microsoft.AppConfiguration/configurationStores/store_2018-09-19_12-02-53","name":"store_2018-09-19_12-02-53","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-16T23:42:04+00:00","endpoint":"https://sync-integration-source.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-source","name":"sync-integration-source","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-16T23:43:37+00:00","endpoint":"https://sync-integration-target.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-target","name":"sync-integration-target","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-11T18:55:52+00:00","endpoint":"https://xuxu-coreprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu-coreprodwus","name":"xuxu-CoreProdWUS","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-11T18:59:14+00:00","endpoint":"https://xuxu-moveprodwus-09-11--18-56-45.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu-moveprodwus-09-11--18-56-45","name":"xuxu-MoveProdWUS-09-11--18-56-45","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-12T18:53:54+00:00","endpoint":"https://xuxu2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/xuxu2","name":"xuxu2","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-12T20:55:48+00:00","endpoint":"https://xuxu3.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu3","name":"xuxu3","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-09T03:01:18+00:00","endpoint":"https://xuxu4.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu4","name":"XUXU4","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-20T01:00:29+00:00","endpoint":"https://xuxucorerunnerconfigstoreprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxucorerunnerresourcegroupprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxucorerunnerconfigstoreprodwus","name":"xuxuCoreRunnerConfigStoreProdWus","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T18:14:42+00:00","endpoint":"https://xuxumovetest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxumovetest","name":"xuxumovetest","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-22T21:58:58+00:00","endpoint":"https://xuxutest2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxutest2","name":"xuxutest2","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-01-23T22:43:48+00:00","endpoint":"https://xuxuteststore.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuteststore","name":"xuxuteststore","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-29T23:05:33+00:00","endpoint":"https://yijia03.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijia03","name":"yijia03","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-12T00:07:48+00:00","endpoint":"https://yijia04.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijia04","name":"yijia04","location":"westus","tags":{"v1":"g1"}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-05-07T00:14:48+00:00","endpoint":"https://yijiaascii.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiaascii","name":"yijiaascii","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-11T20:24:11+00:00","endpoint":"https://yijiaskutest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiaskutest","name":"yijiaskutest","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-16T22:06:51+00:00","endpoint":"https://appconfigspringhubdemo.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfigspringhubdemo","name":"AppConfigSpringHubDemo","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-10T16:35:08+00:00","endpoint":"https://appconvertappconfig.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconvertsample/providers/Microsoft.AppConfiguration/configurationStores/appconvertappconfig","name":"AppConvertAppConfig","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-02T21:20:00+00:00","endpoint":"https://avani.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avani","name":"avani","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-06-25T21:06:34+00:00","endpoint":"https://clitest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/clitest","name":"clitest","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-03T20:02:51+00:00","endpoint":"https://jiyu-test2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test2","name":"jiyu-test2","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-12T18:43:35+00:00","endpoint":"https://minint-appe4b4-coreprodeus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodeus","name":"MININT-APPE4B4-CoreProdEUS","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"190d4922-5806-460b-a4b2-97bc3d3d5e91","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T18:47:29+00:00","endpoint":"https://minint-appe4b4-funcprodeus-2019-11-07--18-47-12-71.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodeus-2019-11-07--18-47-12-71","name":"MININT-APPE4B4-FuncProdEUS-2019-11-07--18-47-12-71","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"2aa5f431-20d4-4bfd-93d4-59a14b0ad4bf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T18:52:43+00:00","endpoint":"https://minint-appe4b4-funcprodeus-2019-11-07--18-52-37-32.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodeus-2019-11-07--18-52-37-32","name":"MININT-APPE4B4-FuncProdEUS-2019-11-07--18-52-37-32","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T22:25:30+00:00","endpoint":"https://recao1002.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1002","name":"recao1002","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-31T00:58:03+00:00","endpoint":"https://sourcea4yseu3i3vvlmwdnee.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcea4yseu3i3vvlmwdnee","name":"Source000002","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-27T00:05:14+00:00","endpoint":"https://vijay-eus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-shoebox/providers/Microsoft.AppConfiguration/configurationStores/vijay-eus","name":"vijay-eus","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-13T19:25:01+00:00","endpoint":"https://webscoutscantarget.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/webscoutscantarget","name":"WebScoutScanTarget","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-01T22:47:38+00:00","endpoint":"https://jiyu-test.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-rg/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test","name":"jiyu-test","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T01:03:58+00:00","endpoint":"https://minint-appe4b4-coreprodneu.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodneu/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodneu","name":"MININT-APPE4B4-CoreProdNEU","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T22:23:50+00:00","endpoint":"https://minint-appe4b4-funcprodneu-2019-09-10--22-23-34-92.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodneu/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodneu-2019-09-10--22-23-34-92","name":"MININT-APPE4B4-FuncProdNEU-2019-09-10--22-23-34-92","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T16:55:20+00:00","endpoint":"https://a-----a.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/a-----a","name":"a-----a","location":"westus2","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-21T21:53:17+00:00","endpoint":"https://recao1021.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1021","name":"recao1021","location":"westus2","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:16:56+00:00","endpoint":"https://recao11062.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao11062","name":"recao11062","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-26T23:21:29+00:00","endpoint":"https://recao926.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao926","name":"recao926","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T18:27:25+00:00","endpoint":"https://recao9302.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao9302","name":"recao9302","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-21T00:29:25+00:00","endpoint":"https://storeincanary.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/storeincanary","name":"StoreInCanary","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T19:32:12+00:00","endpoint":"https://testmametcal.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/testmametcal","name":"testMaMetcal","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-11T00:49:38+00:00","endpoint":"https://testnotification.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuawan/providers/Microsoft.AppConfiguration/configurationStores/testnotification","name":"testNotification","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-21T21:59:54+00:00","endpoint":"https://vijay-canary.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-canary","name":"vijay-canary","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:14:46+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-14-39-96.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-14-39-96","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-14-39-96","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:24:50+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-24-39-94.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-24-39-94","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-24-39-94","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:28:17+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-28-06-97.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-28-06-97","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-28-06-97","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:54:39+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-54-23-15.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-54-23-15","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-54-23-15","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"2aa5f431-20d4-4bfd-93d4-59a14b0ad4bf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T18:52:43+00:00","endpoint":"https://minint-appe4b4-funcprodeus-2019-11-07--18-52-37-32.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodeus-2019-11-07--18-52-37-32","name":"MININT-APPE4B4-FuncProdEUS-2019-11-07--18-52-37-32","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T22:25:30+00:00","endpoint":"https://recao1002.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1002","name":"recao1002","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-01-03T20:39:05+00:00","endpoint":"https://sourcenf4262o6ibwnfc7c55.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcenf4262o6ibwnfc7c55","name":"Source000002","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-27T00:05:14+00:00","endpoint":"https://vijay-eus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-shoebox/providers/Microsoft.AppConfiguration/configurationStores/vijay-eus","name":"vijay-eus","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-13T19:25:01+00:00","endpoint":"https://webscoutscantarget.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/webscoutscantarget","name":"WebScoutScanTarget","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-01T22:47:38+00:00","endpoint":"https://jiyu-test.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-rg/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test","name":"jiyu-test","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T01:03:58+00:00","endpoint":"https://minint-appe4b4-coreprodneu.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodneu/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodneu","name":"MININT-APPE4B4-CoreProdNEU","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T22:23:50+00:00","endpoint":"https://minint-appe4b4-funcprodneu-2019-09-10--22-23-34-92.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodneu/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodneu-2019-09-10--22-23-34-92","name":"MININT-APPE4B4-FuncProdNEU-2019-09-10--22-23-34-92","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T16:55:20+00:00","endpoint":"https://a-----a.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/a-----a","name":"a-----a","location":"westus2","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-21T21:53:17+00:00","endpoint":"https://recao1021.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1021","name":"recao1021","location":"westus2","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:16:56+00:00","endpoint":"https://recao11062.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao11062","name":"recao11062","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-26T23:21:29+00:00","endpoint":"https://recao926.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao926","name":"recao926","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T18:27:25+00:00","endpoint":"https://recao9302.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao9302","name":"recao9302","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-21T00:29:25+00:00","endpoint":"https://storeincanary.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/storeincanary","name":"StoreInCanary","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T19:32:12+00:00","endpoint":"https://testmametcal.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/testmametcal","name":"testMaMetcal","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-11T00:49:38+00:00","endpoint":"https://testnotification.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuawan/providers/Microsoft.AppConfiguration/configurationStores/testnotification","name":"testNotification","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-21T21:59:54+00:00","endpoint":"https://vijay-canary.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-canary","name":"vijay-canary","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:14:46+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-14-39-96.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-14-39-96","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-14-39-96","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:24:50+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-24-39-94.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-24-39-94","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-24-39-94","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:28:17+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-28-06-97.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-28-06-97","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-28-06-97","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:54:39+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-54-23-15.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-54-23-15","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-54-23-15","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"38915f7f-0cd2-482e-ac9d-0e681c4b203f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:58:00+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-57-49-91.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-57-49-91","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-57-49-91","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"4f4c18c5-1b04-43b9-97a7-e9922410c239","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:59:35+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-59-29-62.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-59-29-62","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-59-29-62","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T23:08:22+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--23-08-02-34.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--23-08-02-34","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--23-08-02-34","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"d2845735-ccfd-4f96-a886-09dbb9261374","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T23:15:53+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--23-15-39-49.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--23-15-39-49","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--23-15-39-49","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, @@ -192,16 +192,16 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"66df8b89-6bc0-4118-92f5-3fff26ead195","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:08:03+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-07-57-83.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-07-57-83","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-07-57-83","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"62eda3e9-f28f-4a67-8009-b74c5a70c550","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:09:38+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-09-26-85.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-09-26-85","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-09-26-85","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:13:03+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-12-57-58.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-12-57-58","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-12-57-58","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"7a740dcc-d783-4b31-93c6-e7535df8de87","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:14:41+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-14-35-46.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-14-35-46","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-14-35-46","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"0acec9e9-e1dd-4147-b971-4f1b4a7e00ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:15:35+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--19-15-19-18.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--19-15-19-18","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--19-15-19-18","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-21T18:35:42+00:00","endpoint":"https://xuxu-movetest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-movetest","name":"xuxu-movetest","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-30T23:17:20+00:00","endpoint":"https://xuxuaad.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuaad","name":"xuxuAAD","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T21:26:01+00:00","endpoint":"https://billingtest.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/billingtest","name":"billingtest","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T22:48:42+00:00","endpoint":"https://garywang-cuseuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-cuseuap","name":"garywang-cuseuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-20T20:22:13+00:00","endpoint":"https://garywang-cuseuap2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-cuseuap2","name":"garywang-cuseuap2","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-30T19:39:11+00:00","endpoint":"https://garywang-vnet.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywang-vm-rg/providers/Microsoft.AppConfiguration/configurationStores/garywang-vnet","name":"garywang-vnet","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-19T22:08:42+00:00","endpoint":"https://jiyu-ceuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-ceuap","name":"jiyu-ceuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:06:04+00:00","endpoint":"https://recao1106.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1106","name":"recao1106","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-15T22:27:00+00:00","endpoint":"https://vijay-cuseuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-cuseuap","name":"vijay-cuseuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T21:55:52+00:00","endpoint":"https://vijay-sb.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-sb","name":"vijay-sb","location":"centraluseuap","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-10-01&%24skiptoken=1ZTdasIwFMffJYxd7dg21hUFGUUKu3AqWtl1kh41liYhH04nvvtaN2SvUM5VOCTkx%2f%2fjShSe%2fVyq2pHJlXwWm3JWLMp1Pt9uyIQcvDduEkUNU2yPDSo%2fYN%2fB4kDoJnKBO2Gl8VIrF2VZNWI8foUMqwpSRAFc4BhGVCQJz0acD7PIWH2SFVoXfUhhtdM7P8iNmWm1k%2ftgWfdUJP6fNl5bdG%2fMSDi199r9lMbJGJIY4uT5ydXSlLpGNT2Hc0jIC%2bnp9y%2fyKNnhb1qMTom%2bSXBncHXw6HyLUOT9Q%2fjC1tM6eCeY8szusQNZLNfle7FdL1dFvzLRSCWVB2YMpjyFXVCiTWClMMA9RPE9R0Ap0CEMUxjTh%2fNov0gtCqaTmHYN8Os7WmzzVb8gugpjrGoRHiXWP4iTPLILOE5utx8%3d"}' + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"0acec9e9-e1dd-4147-b971-4f1b4a7e00ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:15:35+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--19-15-19-18.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--19-15-19-18","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--19-15-19-18","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-21T18:35:42+00:00","endpoint":"https://xuxu-movetest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-movetest","name":"xuxu-movetest","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-30T23:17:20+00:00","endpoint":"https://xuxuaad.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuaad","name":"xuxuAAD","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T21:26:01+00:00","endpoint":"https://billingtest.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/billingtest","name":"billingtest","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-20T20:22:13+00:00","endpoint":"https://garywang-cuseuap2.privatelink.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-cuseuap2","name":"garywang-cuseuap2","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-31T04:13:12+00:00","endpoint":"https://garywang-cuseuap3.privatelink.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-cuseuap3","name":"garywang-cuseuap3","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-30T19:39:11+00:00","endpoint":"https://garywang-vnet.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywang-vm-rg/providers/Microsoft.AppConfiguration/configurationStores/garywang-vnet","name":"garywang-vnet","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-19T22:08:42+00:00","endpoint":"https://jiyu-ceuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-ceuap","name":"jiyu-ceuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:06:04+00:00","endpoint":"https://recao1106.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1106","name":"recao1106","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-15T22:27:00+00:00","endpoint":"https://vijay-cuseuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-cuseuap","name":"vijay-cuseuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T21:55:52+00:00","endpoint":"https://vijay-sb.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-sb","name":"vijay-sb","location":"centraluseuap","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-10-01&%24skiptoken=1ZTdasIwFMffJYxd7dg21hUFGUUKu3AqWtl1kh41liYhH04nvvtaN2SvUM5VOCTkx%2f%2fjShSe%2fVyq2pHJlXwWm3JWLMp1Pt9uyIQcvDduEkUNU2yPDSo%2fYN%2fB4kDoJnKBO2Gl8VIrF2VZNWI8foUMqwpSRAFc4BhGVCQJz0acD7PIWH2SFVoXfUhhtdM7P8iNmWm1k%2ftgWfdUJP6fNl5bdG%2fMSDi199r9lMbJGJIY4uT5ydXSlLpGNT2Hc0jIC%2bnp9y%2fyKNnhb1qMTom%2bSXBncHXw6HyLUOT9Q%2fjC1tM6eCeY8szusQNZLNfle7FdL1dFvzLRSCWVB2YMpjyFXVCiTWClMMA9RPE9R0Ap0CEMUxjTh%2fNov0gtCqaTmHYN8Os7WmzzVb8gugpjrGoRHiXWP4iTPLILOE5utx8%3d"}' headers: cache-control: - no-cache content-length: - - '78321' + - '78348' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:18 GMT + - Fri, 03 Jan 2020 20:39:17 GMT expires: - '-1' pragma: @@ -213,14 +213,14 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - e2719b20-7c19-414c-838c-5376821c13e6 - - 03c1ae28-9f3b-44c5-ac3e-d31e31747610 - - 6d742d4e-ea33-4d18-96a4-60027b025004 - - 0204c9c0-6459-4247-971e-77a94170505b - - 0ba58cbf-aa22-4533-acc3-5c50b88ec2ae - - 23d51b09-66c4-4da5-97eb-0126362dc689 - - 1710719c-bc1f-4960-9f93-691d025065fd - - e86bc1e1-b136-4bc0-a94a-e966c99e809b + - f6c47852-37b2-414e-b084-45fac969424d + - 788491bd-6d2d-4510-b7d2-5e524a036de5 + - eae76498-22e6-4e89-9d32-cf8aa630e570 + - 518e151a-da71-4cbe-9a3f-69d3c1b3e08e + - 67501055-2d05-40f6-97b8-d894a7279e8c + - ba35e8a2-651a-4513-ab12-f29bd36e6ffa + - e3913522-23f9-4019-bfcb-af80c3bf6e54 + - fbebbd08-7b33-42ae-b304-f4682e25c1d2 status: code: 200 message: OK @@ -241,16 +241,16 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Source000002/ListKeys?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"iHtq-l0-s0:oVJbfadlUgYw2vl1uJ4b","name":"Primary","value":"rwiqd4J3HcRaBiosjJyKM2LlgQderJqXhAJoyMRGvX8=","connectionString":"Endpoint=https://sourcea4yseu3i3vvlmwdnee.azconfig.io;Id=iHtq-l0-s0:oVJbfadlUgYw2vl1uJ4b;Secret=rwiqd4J3HcRaBiosjJyKM2LlgQderJqXhAJoyMRGvX8=","lastModified":"2019-12-31T00:58:02+00:00","readOnly":false},{"id":"L9lB-l0-s0:i4VfRv4BgxF61f77+dA5","name":"Secondary","value":"HDLdwwq3pNd+fsYcOfxNiM5zfnXUVKSz8y/+KheW+uw=","connectionString":"Endpoint=https://sourcea4yseu3i3vvlmwdnee.azconfig.io;Id=L9lB-l0-s0:i4VfRv4BgxF61f77+dA5;Secret=HDLdwwq3pNd+fsYcOfxNiM5zfnXUVKSz8y/+KheW+uw=","lastModified":"2019-12-31T00:58:02+00:00","readOnly":false},{"id":"M49t-l0-s0:t6XsJEWAPID3hQH2RbmU","name":"Primary - Read Only","value":"aNE5p6q/2qWjCRC3Y2fymDl1wVC+ArBujTJK4Qzgd+o=","connectionString":"Endpoint=https://sourcea4yseu3i3vvlmwdnee.azconfig.io;Id=M49t-l0-s0:t6XsJEWAPID3hQH2RbmU;Secret=aNE5p6q/2qWjCRC3Y2fymDl1wVC+ArBujTJK4Qzgd+o=","lastModified":"2019-12-31T00:58:02+00:00","readOnly":true},{"id":"leFk-l0-s0:MvN97IppYdRWp8z656+K","name":"Secondary - Read Only","value":"U2Uw4zi4LRrjNELKHy3dnHZN/enaeHbyGwVy/1gcFSE=","connectionString":"Endpoint=https://sourcea4yseu3i3vvlmwdnee.azconfig.io;Id=leFk-l0-s0:MvN97IppYdRWp8z656+K;Secret=U2Uw4zi4LRrjNELKHy3dnHZN/enaeHbyGwVy/1gcFSE=","lastModified":"2019-12-31T00:58:02+00:00","readOnly":true}],"nextLink":null}' + string: '{"value":[{"id":"lZXl-l0-s0:MvnOWDWxyDApdPWCBXPY","name":"Primary","value":"svTUN8enETpki78RNR/9tHQSJ7dpErqxzhJrXTatFY0=","connectionString":"Endpoint=https://sourcenf4262o6ibwnfc7c55.azconfig.io;Id=lZXl-l0-s0:MvnOWDWxyDApdPWCBXPY;Secret=svTUN8enETpki78RNR/9tHQSJ7dpErqxzhJrXTatFY0=","lastModified":"2020-01-03T20:39:04+00:00","readOnly":false},{"id":"PIPr-l0-s0:U/QJj7R89w0zl50wJzqY","name":"Secondary","value":"Q1VHMLLppRGoMXhRaaVrjUzjo5DMjayp31hjaqQYpis=","connectionString":"Endpoint=https://sourcenf4262o6ibwnfc7c55.azconfig.io;Id=PIPr-l0-s0:U/QJj7R89w0zl50wJzqY;Secret=Q1VHMLLppRGoMXhRaaVrjUzjo5DMjayp31hjaqQYpis=","lastModified":"2020-01-03T20:39:04+00:00","readOnly":false},{"id":"fYRj-l0-s0:or5dKVv9Yj9UHaHCjyLU","name":"Primary + Read Only","value":"q3/GQx19DW5Lgcu6PcJ4eFQaHiTMm1Wm4locaSSYnXU=","connectionString":"Endpoint=https://sourcenf4262o6ibwnfc7c55.azconfig.io;Id=fYRj-l0-s0:or5dKVv9Yj9UHaHCjyLU;Secret=q3/GQx19DW5Lgcu6PcJ4eFQaHiTMm1Wm4locaSSYnXU=","lastModified":"2020-01-03T20:39:04+00:00","readOnly":true},{"id":"0Mjz-l0-s0:6hwZX+O4KMt8n9S9NLMx","name":"Secondary + Read Only","value":"xGL58MtnnrCI+kV+cHy7z83rPQ+JNTaxXRyBh0iCh8w=","connectionString":"Endpoint=https://sourcenf4262o6ibwnfc7c55.azconfig.io;Id=0Mjz-l0-s0:6hwZX+O4KMt8n9S9NLMx;Secret=xGL58MtnnrCI+kV+cHy7z83rPQ+JNTaxXRyBh0iCh8w=","lastModified":"2020-01-03T20:39:04+00:00","readOnly":true}],"nextLink":null}' headers: cache-control: - no-cache @@ -259,7 +259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:18 GMT + - Fri, 03 Jan 2020 20:39:17 GMT expires: - '-1' pragma: @@ -298,17 +298,17 @@ interactions: - -n -g -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Destination000003?api-version=2019-10-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2019-12-31T00:58:19.9925624+00:00","endpoint":"https://Destination000003.azconfig.io"},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Destination000003","name":"Destination000003","location":"eastus","tags":{}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2020-01-03T20:39:18.5721428+00:00","endpoint":"https://Destination000003.azconfig.io"},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Destination000003","name":"Destination000003","location":"eastus","tags":{}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/a970e686-c2b6-9937-33a1-5cb8d91689c4?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/452e2b13-7241-a44f-294f-02534feaf11b?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -316,7 +316,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:19 GMT + - Fri, 03 Jan 2020 20:39:18 GMT expires: - '-1' pragma: @@ -347,15 +347,15 @@ interactions: - -n -g -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/a970e686-c2b6-9937-33a1-5cb8d91689c4?api-version=2019-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/452e2b13-7241-a44f-294f-02534feaf11b?api-version=2019-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/a970e686-c2b6-9937-33a1-5cb8d91689c4","name":"a970e686-c2b6-9937-33a1-5cb8d91689c4","status":"Succeeded","error":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/452e2b13-7241-a44f-294f-02534feaf11b","name":"452e2b13-7241-a44f-294f-02534feaf11b","status":"Succeeded","error":null}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/a970e686-c2b6-9937-33a1-5cb8d91689c4?api-version=2019-10-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/eastus/operationsStatus/452e2b13-7241-a44f-294f-02534feaf11b?api-version=2019-10-01 cache-control: - no-cache content-length: @@ -363,7 +363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:30 GMT + - Fri, 03 Jan 2020 20:39:29 GMT expires: - '-1' pragma: @@ -396,12 +396,12 @@ interactions: - -n -g -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Destination000003?api-version=2019-10-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-31T00:58:21+00:00","endpoint":"https://destination4dcuuqkdqkajy.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destination4dcuuqkdqkajy","name":"Destination000003","location":"eastus","tags":{}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-01-03T20:39:20+00:00","endpoint":"https://destinationgzgnguxt5lrt7.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationgzgnguxt5lrt7","name":"Destination000003","location":"eastus","tags":{}}' headers: cache-control: - no-cache @@ -410,9 +410,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:30 GMT + - Fri, 03 Jan 2020 20:39:29 GMT etag: - - W/"1c000c14-0000-0100-0000-5e0a9d2d0000" + - W/"d6009759-0000-0100-0000-5e0fa6780000" expires: - '-1' pragma: @@ -445,7 +445,7 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -460,9 +460,9 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"2979c19a-6b1a-427a-abd7-8d4d638fcde3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-02T01:02:47+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-02--01-02-31-51.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-02--01-02-31-51","name":"MININT-APPE4B4-FuncProdWUS-2019-11-02--01-02-31-51","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"e11b33aa-d362-4e48-b599-ce69897412d4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-02T01:05:44+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-02--01-05-35-46.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-02--01-05-35-46","name":"MININT-APPE4B4-FuncProdWUS-2019-11-02--01-05-35-46","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T21:08:15+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-04--21-08-10-24.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-04--21-08-10-24","name":"MININT-APPE4B4-FuncProdWUS-2019-11-04--21-08-10-24","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T21:10:13+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-04--21-10-03-85.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-04--21-10-03-85","name":"MININT-APPE4B4-FuncProdWUS-2019-11-04--21-10-03-85","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"d3cc05e6-d490-4bc6-a936-2b85b74d0a20","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T01:32:57+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-07--01-32-52-78.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-07--01-32-52-78","name":"MININT-APPE4B4-FuncProdWUS-2019-11-07--01-32-52-78","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"ea9703e8-d942-4a91-ae6e-b3302ea5c256","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T01:37:25+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-07--01-37-15-73.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-07--01-37-15-73","name":"MININT-APPE4B4-FuncProdWUS-2019-11-07--01-37-15-73","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-27T22:56:22+00:00","endpoint":"https://minint-appe4b4-msiprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-integrationrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-msiprodwus","name":"MININT-APPE4B4-MSIProdWUS","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-23T01:44:20+00:00","endpoint":"https://notification-test.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/notification-test","name":"notification-test","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2018-08-30T06:11:28+00:00","endpoint":"https://rprgprodwus_2018-08-30_06-11-24-92.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerrprgprodwus_2018-08-30_06-11-24-92/providers/Microsoft.AppConfiguration/configurationStores/rprgprodwus_2018-08-30_06-11-24-92","name":"RPRGProdWus_2018-08-30_06-11-24-92","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T18:46:09+00:00","endpoint":"https://sample.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/sample","name":"sample","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2018-09-19T19:02:56+00:00","endpoint":"https://store_2018-09-19_12-02-53.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuai-test-rg2/providers/Microsoft.AppConfiguration/configurationStores/store_2018-09-19_12-02-53","name":"store_2018-09-19_12-02-53","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-16T23:42:04+00:00","endpoint":"https://sync-integration-source.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-source","name":"sync-integration-source","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-16T23:43:37+00:00","endpoint":"https://sync-integration-target.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-target","name":"sync-integration-target","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-11T18:55:52+00:00","endpoint":"https://xuxu-coreprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu-coreprodwus","name":"xuxu-CoreProdWUS","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-11T18:59:14+00:00","endpoint":"https://xuxu-moveprodwus-09-11--18-56-45.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu-moveprodwus-09-11--18-56-45","name":"xuxu-MoveProdWUS-09-11--18-56-45","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-12T18:53:54+00:00","endpoint":"https://xuxu2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/xuxu2","name":"xuxu2","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-12T20:55:48+00:00","endpoint":"https://xuxu3.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu3","name":"xuxu3","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-09T03:01:18+00:00","endpoint":"https://xuxu4.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu4","name":"XUXU4","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-20T01:00:29+00:00","endpoint":"https://xuxucorerunnerconfigstoreprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxucorerunnerresourcegroupprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxucorerunnerconfigstoreprodwus","name":"xuxuCoreRunnerConfigStoreProdWus","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T18:14:42+00:00","endpoint":"https://xuxumovetest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxumovetest","name":"xuxumovetest","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-22T21:58:58+00:00","endpoint":"https://xuxutest2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxutest2","name":"xuxutest2","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-01-23T22:43:48+00:00","endpoint":"https://xuxuteststore.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuteststore","name":"xuxuteststore","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-29T23:05:33+00:00","endpoint":"https://yijia03.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijia03","name":"yijia03","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-12T00:07:48+00:00","endpoint":"https://yijia04.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijia04","name":"yijia04","location":"westus","tags":{"v1":"g1"}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-05-07T00:14:48+00:00","endpoint":"https://yijiaascii.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiaascii","name":"yijiaascii","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-11T20:24:11+00:00","endpoint":"https://yijiaskutest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiaskutest","name":"yijiaskutest","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-16T22:06:51+00:00","endpoint":"https://appconfigspringhubdemo.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfigspringhubdemo","name":"AppConfigSpringHubDemo","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-10T16:35:08+00:00","endpoint":"https://appconvertappconfig.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconvertsample/providers/Microsoft.AppConfiguration/configurationStores/appconvertappconfig","name":"AppConvertAppConfig","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-02T21:20:00+00:00","endpoint":"https://avani.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avani","name":"avani","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-06-25T21:06:34+00:00","endpoint":"https://clitest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/clitest","name":"clitest","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-31T00:58:21+00:00","endpoint":"https://destination4dcuuqkdqkajy.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destination4dcuuqkdqkajy","name":"Destination000003","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-03T20:02:51+00:00","endpoint":"https://jiyu-test2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test2","name":"jiyu-test2","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-12T18:43:35+00:00","endpoint":"https://minint-appe4b4-coreprodeus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodeus","name":"MININT-APPE4B4-CoreProdEUS","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"ea9703e8-d942-4a91-ae6e-b3302ea5c256","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T01:37:25+00:00","endpoint":"https://minint-appe4b4-funcprodwus-2019-11-07--01-37-15-73.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodwus-2019-11-07--01-37-15-73","name":"MININT-APPE4B4-FuncProdWUS-2019-11-07--01-37-15-73","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-27T22:56:22+00:00","endpoint":"https://minint-appe4b4-msiprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-integrationrgprodwus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-msiprodwus","name":"MININT-APPE4B4-MSIProdWUS","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-23T01:44:20+00:00","endpoint":"https://notification-test.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/notification-test","name":"notification-test","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2018-08-30T06:11:28+00:00","endpoint":"https://rprgprodwus_2018-08-30_06-11-24-92.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerrprgprodwus_2018-08-30_06-11-24-92/providers/Microsoft.AppConfiguration/configurationStores/rprgprodwus_2018-08-30_06-11-24-92","name":"RPRGProdWus_2018-08-30_06-11-24-92","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T18:46:09+00:00","endpoint":"https://sample.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/reservedappconfigstores/providers/Microsoft.AppConfiguration/configurationStores/sample","name":"sample","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2018-09-19T19:02:56+00:00","endpoint":"https://store_2018-09-19_12-02-53.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuai-test-rg2/providers/Microsoft.AppConfiguration/configurationStores/store_2018-09-19_12-02-53","name":"store_2018-09-19_12-02-53","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-16T23:42:04+00:00","endpoint":"https://sync-integration-source.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-source","name":"sync-integration-source","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-16T23:43:37+00:00","endpoint":"https://sync-integration-target.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/sync-integration-target","name":"sync-integration-target","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-11T18:55:52+00:00","endpoint":"https://xuxu-coreprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu-coreprodwus","name":"xuxu-CoreProdWUS","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-11T18:59:14+00:00","endpoint":"https://xuxu-moveprodwus-09-11--18-56-45.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu-moveprodwus-09-11--18-56-45","name":"xuxu-MoveProdWUS-09-11--18-56-45","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-12T18:53:54+00:00","endpoint":"https://xuxu2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconfigtestxuxu1/providers/Microsoft.AppConfiguration/configurationStores/xuxu2","name":"xuxu2","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-12T20:55:48+00:00","endpoint":"https://xuxu3.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu3","name":"xuxu3","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-09T03:01:18+00:00","endpoint":"https://xuxu4.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxu4","name":"XUXU4","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-20T01:00:29+00:00","endpoint":"https://xuxucorerunnerconfigstoreprodwus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxucorerunnerresourcegroupprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxucorerunnerconfigstoreprodwus","name":"xuxuCoreRunnerConfigStoreProdWus","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T18:14:42+00:00","endpoint":"https://xuxumovetest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-targetrgformovetestprodwus/providers/Microsoft.AppConfiguration/configurationStores/xuxumovetest","name":"xuxumovetest","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-02-22T21:58:58+00:00","endpoint":"https://xuxutest2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxutest2","name":"xuxutest2","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-01-23T22:43:48+00:00","endpoint":"https://xuxuteststore.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuteststore","name":"xuxuteststore","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-29T23:05:33+00:00","endpoint":"https://yijia03.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijia03","name":"yijia03","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-12T00:07:48+00:00","endpoint":"https://yijia04.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijia04","name":"yijia04","location":"westus","tags":{"v1":"g1"}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-05-07T00:14:48+00:00","endpoint":"https://yijiaascii.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiaascii","name":"yijiaascii","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-11T20:24:11+00:00","endpoint":"https://yijiaskutest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/yijiaskutest","name":"yijiaskutest","location":"westus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-16T22:06:51+00:00","endpoint":"https://appconfigspringhubdemo.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/appconfigspringhubdemo","name":"AppConfigSpringHubDemo","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-10T16:35:08+00:00","endpoint":"https://appconvertappconfig.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appconvertsample/providers/Microsoft.AppConfiguration/configurationStores/appconvertappconfig","name":"AppConvertAppConfig","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-02T21:20:00+00:00","endpoint":"https://avani.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avgupta-general-testing/providers/Microsoft.AppConfiguration/configurationStores/avani","name":"avani","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-06-25T21:06:34+00:00","endpoint":"https://clitest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/clitest","name":"clitest","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-01-03T20:39:20+00:00","endpoint":"https://destinationgzgnguxt5lrt7.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/destinationgzgnguxt5lrt7","name":"Destination000003","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-03T20:02:51+00:00","endpoint":"https://jiyu-test2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test2","name":"jiyu-test2","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-12T18:43:35+00:00","endpoint":"https://minint-appe4b4-coreprodeus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodeus","name":"MININT-APPE4B4-CoreProdEUS","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"190d4922-5806-460b-a4b2-97bc3d3d5e91","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T18:47:29+00:00","endpoint":"https://minint-appe4b4-funcprodeus-2019-11-07--18-47-12-71.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodeus-2019-11-07--18-47-12-71","name":"MININT-APPE4B4-FuncProdEUS-2019-11-07--18-47-12-71","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"2aa5f431-20d4-4bfd-93d4-59a14b0ad4bf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T18:52:43+00:00","endpoint":"https://minint-appe4b4-funcprodeus-2019-11-07--18-52-37-32.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodeus-2019-11-07--18-52-37-32","name":"MININT-APPE4B4-FuncProdEUS-2019-11-07--18-52-37-32","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T22:25:30+00:00","endpoint":"https://recao1002.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1002","name":"recao1002","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-31T00:58:03+00:00","endpoint":"https://sourcea4yseu3i3vvlmwdnee.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcea4yseu3i3vvlmwdnee","name":"Source000002","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-27T00:05:14+00:00","endpoint":"https://vijay-eus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-shoebox/providers/Microsoft.AppConfiguration/configurationStores/vijay-eus","name":"vijay-eus","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-13T19:25:01+00:00","endpoint":"https://webscoutscantarget.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/webscoutscantarget","name":"WebScoutScanTarget","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-01T22:47:38+00:00","endpoint":"https://jiyu-test.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-rg/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test","name":"jiyu-test","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T01:03:58+00:00","endpoint":"https://minint-appe4b4-coreprodneu.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodneu/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodneu","name":"MININT-APPE4B4-CoreProdNEU","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T22:23:50+00:00","endpoint":"https://minint-appe4b4-funcprodneu-2019-09-10--22-23-34-92.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodneu/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodneu-2019-09-10--22-23-34-92","name":"MININT-APPE4B4-FuncProdNEU-2019-09-10--22-23-34-92","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T16:55:20+00:00","endpoint":"https://a-----a.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/a-----a","name":"a-----a","location":"westus2","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-21T21:53:17+00:00","endpoint":"https://recao1021.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1021","name":"recao1021","location":"westus2","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:16:56+00:00","endpoint":"https://recao11062.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao11062","name":"recao11062","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-26T23:21:29+00:00","endpoint":"https://recao926.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao926","name":"recao926","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T18:27:25+00:00","endpoint":"https://recao9302.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao9302","name":"recao9302","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-21T00:29:25+00:00","endpoint":"https://storeincanary.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/storeincanary","name":"StoreInCanary","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T19:32:12+00:00","endpoint":"https://testmametcal.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/testmametcal","name":"testMaMetcal","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-11T00:49:38+00:00","endpoint":"https://testnotification.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuawan/providers/Microsoft.AppConfiguration/configurationStores/testnotification","name":"testNotification","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-21T21:59:54+00:00","endpoint":"https://vijay-canary.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-canary","name":"vijay-canary","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:14:46+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-14-39-96.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-14-39-96","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-14-39-96","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:24:50+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-24-39-94.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-24-39-94","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-24-39-94","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:28:17+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-28-06-97.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-28-06-97","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-28-06-97","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:54:39+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-54-23-15.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-54-23-15","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-54-23-15","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"2aa5f431-20d4-4bfd-93d4-59a14b0ad4bf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-07T18:52:43+00:00","endpoint":"https://minint-appe4b4-funcprodeus-2019-11-07--18-52-37-32.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodeus-2019-11-07--18-52-37-32","name":"MININT-APPE4B4-FuncProdEUS-2019-11-07--18-52-37-32","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T22:25:30+00:00","endpoint":"https://recao1002.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1002","name":"recao1002","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-01-03T20:39:05+00:00","endpoint":"https://sourcenf4262o6ibwnfc7c55.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/sourcenf4262o6ibwnfc7c55","name":"Source000002","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-27T00:05:14+00:00","endpoint":"https://vijay-eus.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-shoebox/providers/Microsoft.AppConfiguration/configurationStores/vijay-eus","name":"vijay-eus","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-03-13T19:25:01+00:00","endpoint":"https://webscoutscantarget.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azconfig-test-infrastructure/providers/Microsoft.AppConfiguration/configurationStores/webscoutscantarget","name":"WebScoutScanTarget","location":"eastus","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-01T22:47:38+00:00","endpoint":"https://jiyu-test.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu-rg/providers/Microsoft.AppConfiguration/configurationStores/jiyu-test","name":"jiyu-test","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T01:03:58+00:00","endpoint":"https://minint-appe4b4-coreprodneu.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-corergprodneu/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-coreprodneu","name":"MININT-APPE4B4-CoreProdNEU","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T22:23:50+00:00","endpoint":"https://minint-appe4b4-funcprodneu-2019-09-10--22-23-34-92.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodneu/providers/Microsoft.AppConfiguration/configurationStores/minint-appe4b4-funcprodneu-2019-09-10--22-23-34-92","name":"MININT-APPE4B4-FuncProdNEU-2019-09-10--22-23-34-92","location":"northeurope","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-07T16:55:20+00:00","endpoint":"https://a-----a.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/a-----a","name":"a-----a","location":"westus2","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-21T21:53:17+00:00","endpoint":"https://recao1021.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1021","name":"recao1021","location":"westus2","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:16:56+00:00","endpoint":"https://recao11062.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao11062","name":"recao11062","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-26T23:21:29+00:00","endpoint":"https://recao926.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao926","name":"recao926","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T18:27:25+00:00","endpoint":"https://recao9302.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao9302","name":"recao9302","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-21T00:29:25+00:00","endpoint":"https://storeincanary.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhenlwa/providers/Microsoft.AppConfiguration/configurationStores/storeincanary","name":"StoreInCanary","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-30T19:32:12+00:00","endpoint":"https://testmametcal.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mametcal/providers/Microsoft.AppConfiguration/configurationStores/testmametcal","name":"testMaMetcal","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-11T00:49:38+00:00","endpoint":"https://testnotification.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shuawan/providers/Microsoft.AppConfiguration/configurationStores/testnotification","name":"testNotification","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-21T21:59:54+00:00","endpoint":"https://vijay-canary.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-canary","name":"vijay-canary","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:14:46+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-14-39-96.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-14-39-96","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-14-39-96","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:24:50+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-24-39-94.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-24-39-94","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-24-39-94","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-04T23:28:17+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-04--23-28-06-97.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-04--23-28-06-97","name":"xuxu-FuncProdEUS2EUAP-2019-11-04--23-28-06-97","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:54:39+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-54-23-15.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-54-23-15","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-54-23-15","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"38915f7f-0cd2-482e-ac9d-0e681c4b203f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:58:00+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-57-49-91.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-57-49-91","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-57-49-91","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"4f4c18c5-1b04-43b9-97a7-e9922410c239","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T22:59:35+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--22-59-29-62.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--22-59-29-62","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--22-59-29-62","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T23:08:22+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--23-08-02-34.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--23-08-02-34","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--23-08-02-34","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"d2845735-ccfd-4f96-a886-09dbb9261374","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-05T23:15:53+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-05--23-15-39-49.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-05--23-15-39-49","name":"xuxu-FuncProdEUS2EUAP-2019-11-05--23-15-39-49","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, @@ -472,16 +472,16 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"66df8b89-6bc0-4118-92f5-3fff26ead195","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:08:03+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-07-57-83.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-07-57-83","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-07-57-83","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"62eda3e9-f28f-4a67-8009-b74c5a70c550","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:09:38+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-09-26-85.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-09-26-85","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-09-26-85","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:13:03+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-12-57-58.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-12-57-58","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-12-57-58","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"7a740dcc-d783-4b31-93c6-e7535df8de87","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T18:14:41+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--18-14-35-46.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--18-14-35-46","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--18-14-35-46","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","identity":{"type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"0acec9e9-e1dd-4147-b971-4f1b4a7e00ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:15:35+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--19-15-19-18.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--19-15-19-18","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--19-15-19-18","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-21T18:35:42+00:00","endpoint":"https://xuxu-movetest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-movetest","name":"xuxu-movetest","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-30T23:17:20+00:00","endpoint":"https://xuxuaad.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuaad","name":"xuxuAAD","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T21:26:01+00:00","endpoint":"https://billingtest.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/billingtest","name":"billingtest","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-09-10T22:48:42+00:00","endpoint":"https://garywang-cuseuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-cuseuap","name":"garywang-cuseuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-20T20:22:13+00:00","endpoint":"https://garywang-cuseuap2.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-cuseuap2","name":"garywang-cuseuap2","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-30T19:39:11+00:00","endpoint":"https://garywang-vnet.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywang-vm-rg/providers/Microsoft.AppConfiguration/configurationStores/garywang-vnet","name":"garywang-vnet","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-19T22:08:42+00:00","endpoint":"https://jiyu-ceuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-ceuap","name":"jiyu-ceuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:06:04+00:00","endpoint":"https://recao1106.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1106","name":"recao1106","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-15T22:27:00+00:00","endpoint":"https://vijay-cuseuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-cuseuap","name":"vijay-cuseuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T21:55:52+00:00","endpoint":"https://vijay-sb.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-sb","name":"vijay-sb","location":"centraluseuap","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-10-01&%24skiptoken=1ZTdasIwFMffJYxd7dg21hUFGUUKu3AqWtl1kh41liYhH04nvvtaN2SvUM5VOCTkx%2f%2fjShSe%2fVyq2pHJlXwWm3JWLMp1Pt9uyIQcvDduEkUNU2yPDSo%2fYN%2fB4kDoJnKBO2Gl8VIrF2VZNWI8foUMqwpSRAFc4BhGVCQJz0acD7PIWH2SFVoXfUhhtdM7P8iNmWm1k%2ftgWfdUJP6fNl5bdG%2fMSDi199r9lMbJGJIY4uT5ydXSlLpGNT2Hc0jIC%2bnp9y%2fyKNnhb1qMTom%2bSXBncHXw6HyLUOT9Q%2fjC1tM6eCeY8szusQNZLNfle7FdL1dFvzLRSCWVB2YMpjyFXVCiTWClMMA9RPE9R0Ap0CEMUxjTh%2fNov0gtCqaTmHYN8Os7WmzzVb8gugpjrGoRHiXWP4iTPLILOE5utx8%3d"}' + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RunnerGlobal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RunnerIdentity":{"principalId":"d727fee8-86ce-47e5-8332-3c96d87e1346","clientId":"bade4c6b-6fe0-455e-bd11-3b6a7d6b8381"}},"principalId":"0acec9e9-e1dd-4147-b971-4f1b4a7e00ad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:15:35+00:00","endpoint":"https://xuxu-funcprodeus2euap-2019-11-06--19-15-19-18.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/runnerlocaldev-minint-appe4b4-funcrgprodeus2euap/providers/Microsoft.AppConfiguration/configurationStores/xuxu-funcprodeus2euap-2019-11-06--19-15-19-18","name":"xuxu-FuncProdEUS2EUAP-2019-11-06--19-15-19-18","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-08-21T18:35:42+00:00","endpoint":"https://xuxu-movetest.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxu-movetest","name":"xuxu-movetest","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-30T23:17:20+00:00","endpoint":"https://xuxuaad.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xuxu_test/providers/Microsoft.AppConfiguration/configurationStores/xuxuaad","name":"xuxuAAD","location":"eastus2euap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-25T21:26:01+00:00","endpoint":"https://billingtest.azconfig.io"},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yijia/providers/Microsoft.AppConfiguration/configurationStores/billingtest","name":"billingtest","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-20T20:22:13+00:00","endpoint":"https://garywang-cuseuap2.privatelink.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-cuseuap2","name":"garywang-cuseuap2","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-31T04:13:12+00:00","endpoint":"https://garywang-cuseuap3.privatelink.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywangdemo/providers/Microsoft.AppConfiguration/configurationStores/garywang-cuseuap3","name":"garywang-cuseuap3","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-07-30T19:39:11+00:00","endpoint":"https://garywang-vnet.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/garywang-vm-rg/providers/Microsoft.AppConfiguration/configurationStores/garywang-vnet","name":"garywang-vnet","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-12-19T22:08:42+00:00","endpoint":"https://jiyu-ceuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiyu/providers/Microsoft.AppConfiguration/configurationStores/jiyu-ceuap","name":"jiyu-ceuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-11-06T19:06:04+00:00","endpoint":"https://recao1106.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/recao/providers/Microsoft.AppConfiguration/configurationStores/recao1106","name":"recao1106","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-15T22:27:00+00:00","endpoint":"https://vijay-cuseuap.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-cuseuap","name":"vijay-cuseuap","location":"centraluseuap","tags":{}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2019-10-02T21:55:52+00:00","endpoint":"https://vijay-sb.azconfig.io"},"sku":{"name":"free"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijay-test/providers/Microsoft.AppConfiguration/configurationStores/vijay-sb","name":"vijay-sb","location":"centraluseuap","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-10-01&%24skiptoken=1ZTdasIwFMffJYxd7dg21hUFGUUKu3AqWtl1kh41liYhH04nvvtaN2SvUM5VOCTkx%2f%2fjShSe%2fVyq2pHJlXwWm3JWLMp1Pt9uyIQcvDduEkUNU2yPDSo%2fYN%2fB4kDoJnKBO2Gl8VIrF2VZNWI8foUMqwpSRAFc4BhGVCQJz0acD7PIWH2SFVoXfUhhtdM7P8iNmWm1k%2ftgWfdUJP6fNl5bdG%2fMSDi199r9lMbJGJIY4uT5ydXSlLpGNT2Hc0jIC%2bnp9y%2fyKNnhb1qMTom%2bSXBncHXw6HyLUOT9Q%2fjC1tM6eCeY8szusQNZLNfle7FdL1dFvzLRSCWVB2YMpjyFXVCiTWClMMA9RPE9R0Ap0CEMUxjTh%2fNov0gtCqaTmHYN8Os7WmzzVb8gugpjrGoRHiXWP4iTPLILOE5utx8%3d"}' headers: cache-control: - no-cache content-length: - - '78845' + - '78872' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:36 GMT + - Fri, 03 Jan 2020 20:39:35 GMT expires: - '-1' pragma: @@ -493,14 +493,14 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 439cd092-b98f-4f92-86da-b59e0be9bdb2 - - 47c2f34d-4dab-4833-af80-7603ab2c32f8 - - 6292f01e-0b3b-4090-a106-551ebe621dce - - 88dc5331-07e7-47a6-93cc-62f5678418f7 - - 65903c75-7dd3-42bc-acca-f3cbaca0c59f - - 91c6b2ed-e65b-4ba8-8f94-561ab7a3f69c - - e7c86382-0b37-4bd0-a9ce-c0ef920eb64e - - 975fc2bf-868e-4c62-89b1-21c3359aff90 + - 5debbeea-b1d0-429a-9262-6e495c68b394 + - 85fee401-7c81-4550-89da-0c18b406b9dd + - aa12ab88-6333-40e2-9670-573f70d5dd6f + - bae77efb-3e26-4d15-8a56-85046eee927a + - f25b927f-8b00-4fe9-8b43-d4488ee271d2 + - 5967b35c-4b45-48ca-81f9-0232525d385a + - 9e2db3a6-8f8e-45ee-bf18-769e8457cbc8 + - 9cdb68cc-7121-44d0-8023-b73725e792c3 status: code: 200 message: OK @@ -521,16 +521,16 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-appconfiguration/0.3.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.AppConfiguration/configurationStores/Destination000003/ListKeys?api-version=2019-10-01 response: body: - string: '{"value":[{"id":"wDaB-l0-s0:Ub6RFfz2UdnVcejkGcDg","name":"Primary","value":"LwoycQAXGuRd5mEWkQiIScfmQ6dbr619AQUDrlksK50=","connectionString":"Endpoint=https://destination4dcuuqkdqkajy.azconfig.io;Id=wDaB-l0-s0:Ub6RFfz2UdnVcejkGcDg;Secret=LwoycQAXGuRd5mEWkQiIScfmQ6dbr619AQUDrlksK50=","lastModified":"2019-12-31T00:58:20+00:00","readOnly":false},{"id":"QEFP-l0-s0:Cflv8EI1wS/usHRE7kl7","name":"Secondary","value":"Wk6qyqsaVFrQDRU++bRvZgDE2DJ57ynAqOYqUWL+VVU=","connectionString":"Endpoint=https://destination4dcuuqkdqkajy.azconfig.io;Id=QEFP-l0-s0:Cflv8EI1wS/usHRE7kl7;Secret=Wk6qyqsaVFrQDRU++bRvZgDE2DJ57ynAqOYqUWL+VVU=","lastModified":"2019-12-31T00:58:20+00:00","readOnly":false},{"id":"lha9-l0-s0:kvvXHPdYDpmo716DZdvv","name":"Primary - Read Only","value":"ervdmoLnIRjRfgsmKZi1bxl0UKq+BsE3r3nsG5omhB0=","connectionString":"Endpoint=https://destination4dcuuqkdqkajy.azconfig.io;Id=lha9-l0-s0:kvvXHPdYDpmo716DZdvv;Secret=ervdmoLnIRjRfgsmKZi1bxl0UKq+BsE3r3nsG5omhB0=","lastModified":"2019-12-31T00:58:20+00:00","readOnly":true},{"id":"pPBW-l0-s0:NplYbYqRWFTKrE/oAo0D","name":"Secondary - Read Only","value":"Revr1dsH0E8u1hsUSoOYarhydyVd3pVfiLcRya+riig=","connectionString":"Endpoint=https://destination4dcuuqkdqkajy.azconfig.io;Id=pPBW-l0-s0:NplYbYqRWFTKrE/oAo0D;Secret=Revr1dsH0E8u1hsUSoOYarhydyVd3pVfiLcRya+riig=","lastModified":"2019-12-31T00:58:20+00:00","readOnly":true}],"nextLink":null}' + string: '{"value":[{"id":"+2o2-l0-s0:kzIE+lMSwHKwbtJc7zTG","name":"Primary","value":"BpImt8yfuX5yGacsp7RAXszuXsAWHYK27DDAeCAcYt0=","connectionString":"Endpoint=https://destinationgzgnguxt5lrt7.azconfig.io;Id=+2o2-l0-s0:kzIE+lMSwHKwbtJc7zTG;Secret=BpImt8yfuX5yGacsp7RAXszuXsAWHYK27DDAeCAcYt0=","lastModified":"2020-01-03T20:39:19+00:00","readOnly":false},{"id":"q0Yy-l0-s0:uINU+eO0BXQJZgpnZq0V","name":"Secondary","value":"0QQ+aXqhJ9ID6McD9rYuc7JOxD9KXtQQ/6m7ytWHcyc=","connectionString":"Endpoint=https://destinationgzgnguxt5lrt7.azconfig.io;Id=q0Yy-l0-s0:uINU+eO0BXQJZgpnZq0V;Secret=0QQ+aXqhJ9ID6McD9rYuc7JOxD9KXtQQ/6m7ytWHcyc=","lastModified":"2020-01-03T20:39:19+00:00","readOnly":false},{"id":"h8y3-l0-s0:CWeJjAnSTkHWMHCy2U9/","name":"Primary + Read Only","value":"d+41/Wxl8c0rCseo9DDA7uc3p3AZdX+qXZajc/igPiQ=","connectionString":"Endpoint=https://destinationgzgnguxt5lrt7.azconfig.io;Id=h8y3-l0-s0:CWeJjAnSTkHWMHCy2U9/;Secret=d+41/Wxl8c0rCseo9DDA7uc3p3AZdX+qXZajc/igPiQ=","lastModified":"2020-01-03T20:39:19+00:00","readOnly":true},{"id":"6hXO-l0-s0:e8GPPEp9M5LXJD+FI8TC","name":"Secondary + Read Only","value":"ekliPaIwAssvLkcHSXLQXhQQeGFTxEUtHfi9XyKG2zg=","connectionString":"Endpoint=https://destinationgzgnguxt5lrt7.azconfig.io;Id=6hXO-l0-s0:e8GPPEp9M5LXJD+FI8TC;Secret=ekliPaIwAssvLkcHSXLQXhQQeGFTxEUtHfi9XyKG2zg=","lastModified":"2020-01-03T20:39:19+00:00","readOnly":true}],"nextLink":null}' headers: cache-control: - no-cache @@ -539,7 +539,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:36 GMT + - Fri, 03 Jan 2020 20:39:37 GMT expires: - '-1' pragma: @@ -573,9 +573,9 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:37 GMT + - Jan, 03 2020 20:39:37 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/Color?label=v1&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv/Color?label=v1&fields=&api-version=1.0 response: body: string: '' @@ -603,7 +603,7 @@ interactions: content-length: - '0' date: - - Tue, 31 Dec 2019 00:58:38 GMT + - Fri, 03 Jan 2020 20:39:37 GMT server: - openresty/1.15.8.1 strict-transport-security: @@ -631,12 +631,12 @@ interactions: x-ms-content-sha256: - 1sT9hxGuBAZWDoyiQ2TpFhUO9+AUxgExwmjgAvoxfG0= x-ms-date: - - Dec, 31 2019 00:58:38 GMT + - Jan, 03 2020 20:39:37 GMT method: PUT - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/Color?label=v1&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv/Color?label=v1&api-version=1.0 response: body: - string: '{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"}' + string: '{"etag":"aSzjhsmqeTeHDK7Yma8eYRrCAHs","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:38+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -661,17 +661,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:38 GMT + - Fri, 03 Jan 2020 20:39:37 GMT etag: - - '"QjOa6IE9TXRO0wgSYctpnFZpvzG"' + - '"aSzjhsmqeTeHDK7Yma8eYRrCAHs"' last-modified: - - Tue, 31 Dec 2019 00:58:38 GMT + - Fri, 03 Jan 2020 20:39:38 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDQ=;sn=956804 + - zAJw6V16=ODotMSM1MDM0NDU=;sn=503445 transfer-encoding: - chunked status: @@ -691,9 +691,9 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:38 GMT + - Jan, 03 2020 20:39:38 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/Color?label=v2&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv/Color?label=v2&fields=&api-version=1.0 response: body: string: '' @@ -721,7 +721,7 @@ interactions: content-length: - '0' date: - - Tue, 31 Dec 2019 00:58:38 GMT + - Fri, 03 Jan 2020 20:39:38 GMT server: - openresty/1.15.8.1 strict-transport-security: @@ -749,12 +749,12 @@ interactions: x-ms-content-sha256: - wSIIvvMC4vAk+NXMjAgsRexJSVfWnHUBPbhbKxey7hE= x-ms-date: - - Dec, 31 2019 00:58:38 GMT + - Jan, 03 2020 20:39:38 GMT method: PUT - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/Color?label=v2&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv/Color?label=v2&api-version=1.0 response: body: - string: '{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}' + string: '{"etag":"qV6ZfRDAsbJSx3BaK53UxOj6oZQ","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -779,17 +779,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:38 GMT + - Fri, 03 Jan 2020 20:39:38 GMT etag: - - '"4PTxAbMGNgT2MoamZByrCUETZq7"' + - '"qV6ZfRDAsbJSx3BaK53UxOj6oZQ"' last-modified: - - Tue, 31 Dec 2019 00:58:39 GMT + - Fri, 03 Jan 2020 20:39:39 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDU=;sn=956805 + - zAJw6V16=ODotMSM1MDM0NDY=;sn=503446 transfer-encoding: - chunked status: @@ -809,9 +809,9 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:38 GMT + - Jan, 03 2020 20:39:38 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&fields=&api-version=1.0 response: body: string: '' @@ -839,7 +839,7 @@ interactions: content-length: - '0' date: - - Tue, 31 Dec 2019 00:58:39 GMT + - Fri, 03 Jan 2020 20:39:39 GMT server: - openresty/1.15.8.1 strict-transport-security: @@ -869,14 +869,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:39 GMT + - Jan, 03 2020 20:39:39 GMT method: PUT - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 response: body: - string: '{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -901,17 +901,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:39 GMT + - Fri, 03 Jan 2020 20:39:39 GMT etag: - - '"OAu94YW2obJtmCB04EE3wr3jFJ7"' + - '"tNSkfA4ELXHpiyCRBcmTfAsd6tH"' last-modified: - - Tue, 31 Dec 2019 00:58:39 GMT + - Fri, 03 Jan 2020 20:39:39 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDY=;sn=956806 + - zAJw6V16=ODotMSM1MDM0NDc=;sn=503447 transfer-encoding: - chunked status: @@ -931,9 +931,9 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:39 GMT + - Jan, 03 2020 20:39:39 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&fields=&api-version=1.0 response: body: string: '' @@ -961,7 +961,7 @@ interactions: content-length: - '0' date: - - Tue, 31 Dec 2019 00:58:39 GMT + - Fri, 03 Jan 2020 20:39:39 GMT server: - openresty/1.15.8.1 strict-transport-security: @@ -991,14 +991,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:39 GMT + - Jan, 03 2020 20:39:39 GMT method: PUT - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 response: body: - string: '{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -1023,17 +1023,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:40 GMT + - Fri, 03 Jan 2020 20:39:39 GMT etag: - - '"2lq1WZ6c7waV1eFeuPAUSEjJCtK"' + - '"vWAiEI8bqxNCMasJj4YrgtFmfbj"' last-modified: - - Tue, 31 Dec 2019 00:58:40 GMT + - Fri, 03 Jan 2020 20:39:40 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -1053,16 +1053,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:40 GMT + - Jan, 03 2020 20:39:39 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"},{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"},{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"},{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"},{"etag":"aSzjhsmqeTeHDK7Yma8eYRrCAHs","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:38+00:00"},{"etag":"qV6ZfRDAsbJSx3BaK53UxOj6oZQ","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -1087,13 +1087,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:40 GMT + - Fri, 03 Jan 2020 20:39:40 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -1113,16 +1113,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:40 GMT + - Jan, 03 2020 20:39:40 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"},{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -1147,13 +1147,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:40 GMT + - Fri, 03 Jan 2020 20:39:40 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -1177,12 +1177,12 @@ interactions: x-ms-content-sha256: - RRuSjhDZOX3KEhbLL6KJ66jTsZym2UoRjOklQ3aj5wk= x-ms-date: - - Dec, 31 2019 00:58:40 GMT + - Jan, 03 2020 20:39:40 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 response: body: - string: '{"etag":"rcG4iQF3XqgXLPfZcbUPrrwXMaG","key":"Color","label":"DestLabel","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:41+00:00"}' + string: '{"etag":"4rjiT27bNj66uGOCw7XSb55t9eV","key":"Color","label":"DestLabel","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:41+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -1207,17 +1207,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:41 GMT + - Fri, 03 Jan 2020 20:39:41 GMT etag: - - '"rcG4iQF3XqgXLPfZcbUPrrwXMaG"' + - '"4rjiT27bNj66uGOCw7XSb55t9eV"' last-modified: - - Tue, 31 Dec 2019 00:58:41 GMT + - Fri, 03 Jan 2020 20:39:41 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzNzc=;sn=913377 + - zAJw6V16=NDotMSM5NzExOTQ=;sn=971194 transfer-encoding: - chunked status: @@ -1241,12 +1241,12 @@ interactions: x-ms-content-sha256: - z7s/2bFY9I62DTRnO9PidfN+N9b8mIApAhhnmIDGhRo= x-ms-date: - - Dec, 31 2019 00:58:41 GMT + - Jan, 03 2020 20:39:41 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 response: body: - string: '{"etag":"m1MHON61prVnp9GZNmKWF095E6H","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:41+00:00"}' + string: '{"etag":"b88nUErm7z9mUPstAvNQiL5b0DI","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:41+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -1271,17 +1271,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:41 GMT + - Fri, 03 Jan 2020 20:39:41 GMT etag: - - '"m1MHON61prVnp9GZNmKWF095E6H"' + - '"b88nUErm7z9mUPstAvNQiL5b0DI"' last-modified: - - Tue, 31 Dec 2019 00:58:41 GMT + - Fri, 03 Jan 2020 20:39:41 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzNzg=;sn=913378 + - zAJw6V16=NDotMSM5NzExOTU=;sn=971195 transfer-encoding: - chunked status: @@ -1307,14 +1307,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:41 GMT + - Jan, 03 2020 20:39:41 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 response: body: - string: '{"etag":"xLlMKqDyQK7fNNeK16r9SVDWxos","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"0GkiAphKzhocO1pawVqeqeVnYu2","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:42+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:41+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -1339,17 +1339,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:41 GMT + - Fri, 03 Jan 2020 20:39:41 GMT etag: - - '"xLlMKqDyQK7fNNeK16r9SVDWxos"' + - '"0GkiAphKzhocO1pawVqeqeVnYu2"' last-modified: - - Tue, 31 Dec 2019 00:58:42 GMT + - Fri, 03 Jan 2020 20:39:41 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzNzk=;sn=913379 + - zAJw6V16=NDotMSM5NzExOTY=;sn=971196 transfer-encoding: - chunked status: @@ -1375,14 +1375,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:41 GMT + - Jan, 03 2020 20:39:41 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 response: body: - string: '{"etag":"1PVPFOLsxxDDUxdq0fsdctxA0hW","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"t65xqC1TMgCfXMnE75BIflz29e5","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:42+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:41+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -1407,17 +1407,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:41 GMT + - Fri, 03 Jan 2020 20:39:41 GMT etag: - - '"1PVPFOLsxxDDUxdq0fsdctxA0hW"' + - '"t65xqC1TMgCfXMnE75BIflz29e5"' last-modified: - - Tue, 31 Dec 2019 00:58:42 GMT + - Fri, 03 Jan 2020 20:39:41 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzODA=;sn=913380 + - zAJw6V16=NDotMSM5NzExOTc=;sn=971197 transfer-encoding: - chunked status: @@ -1437,14 +1437,14 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:41 GMT + - Jan, 03 2020 20:39:41 GMT method: GET - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"1PVPFOLsxxDDUxdq0fsdctxA0hW","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"t65xqC1TMgCfXMnE75BIflz29e5","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:42+00:00"},{"etag":"m1MHON61prVnp9GZNmKWF095E6H","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:41+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:41+00:00"},{"etag":"b88nUErm7z9mUPstAvNQiL5b0DI","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:41+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -1469,13 +1469,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:42 GMT + - Fri, 03 Jan 2020 20:39:41 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzODA=;sn=913380 + - zAJw6V16=NDotMSM5NzExOTc=;sn=971197 transfer-encoding: - chunked status: @@ -1495,20 +1495,20 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"1PVPFOLsxxDDUxdq0fsdctxA0hW"' + - '"t65xqC1TMgCfXMnE75BIflz29e5"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:42 GMT + - Jan, 03 2020 20:39:41 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 response: body: - string: '{"etag":"1PVPFOLsxxDDUxdq0fsdctxA0hW","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"t65xqC1TMgCfXMnE75BIflz29e5","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:42+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:41+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -1533,17 +1533,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:42 GMT + - Fri, 03 Jan 2020 20:39:42 GMT etag: - - '"1PVPFOLsxxDDUxdq0fsdctxA0hW"' + - '"t65xqC1TMgCfXMnE75BIflz29e5"' last-modified: - - Tue, 31 Dec 2019 00:58:42 GMT + - Fri, 03 Jan 2020 20:39:41 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzODE=;sn=913381 + - zAJw6V16=NDotMSM5NzExOTg=;sn=971198 transfer-encoding: - chunked status: @@ -1563,18 +1563,18 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"m1MHON61prVnp9GZNmKWF095E6H"' + - '"b88nUErm7z9mUPstAvNQiL5b0DI"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:42 GMT + - Jan, 03 2020 20:39:42 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 response: body: - string: '{"etag":"m1MHON61prVnp9GZNmKWF095E6H","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:41+00:00"}' + string: '{"etag":"b88nUErm7z9mUPstAvNQiL5b0DI","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:41+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -1599,17 +1599,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:42 GMT + - Fri, 03 Jan 2020 20:39:42 GMT etag: - - '"m1MHON61prVnp9GZNmKWF095E6H"' + - '"b88nUErm7z9mUPstAvNQiL5b0DI"' last-modified: - - Tue, 31 Dec 2019 00:58:41 GMT + - Fri, 03 Jan 2020 20:39:41 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzODI=;sn=913382 + - zAJw6V16=NDotMSM5NzExOTk=;sn=971199 transfer-encoding: - chunked status: @@ -1629,16 +1629,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:42 GMT + - Jan, 03 2020 20:39:42 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"},{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"},{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"},{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"},{"etag":"aSzjhsmqeTeHDK7Yma8eYRrCAHs","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:38+00:00"},{"etag":"qV6ZfRDAsbJSx3BaK53UxOj6oZQ","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -1663,13 +1663,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:43 GMT + - Fri, 03 Jan 2020 20:39:42 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -1689,16 +1689,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:43 GMT + - Jan, 03 2020 20:39:42 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"},{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -1723,13 +1723,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:43 GMT + - Fri, 03 Jan 2020 20:39:42 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -1753,12 +1753,12 @@ interactions: x-ms-content-sha256: - RRuSjhDZOX3KEhbLL6KJ66jTsZym2UoRjOklQ3aj5wk= x-ms-date: - - Dec, 31 2019 00:58:43 GMT + - Jan, 03 2020 20:39:43 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=&api-version=1.0 response: body: - string: '{"etag":"QkN4Q2H7aoQmWhJkz71xf4gV28r","key":"Color","label":null,"content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}' + string: '{"etag":"eFTL8c9Y9gMFD510FWZKQAX3d1Z","key":"Color","label":null,"content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:43+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -1783,17 +1783,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:43 GMT + - Fri, 03 Jan 2020 20:39:43 GMT etag: - - '"QkN4Q2H7aoQmWhJkz71xf4gV28r"' + - '"eFTL8c9Y9gMFD510FWZKQAX3d1Z"' last-modified: - - Tue, 31 Dec 2019 00:58:44 GMT + - Fri, 03 Jan 2020 20:39:43 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzODM=;sn=913383 + - zAJw6V16=NDotMSM5NzEyMDA=;sn=971200 transfer-encoding: - chunked status: @@ -1817,12 +1817,12 @@ interactions: x-ms-content-sha256: - z7s/2bFY9I62DTRnO9PidfN+N9b8mIApAhhnmIDGhRo= x-ms-date: - - Dec, 31 2019 00:58:43 GMT + - Jan, 03 2020 20:39:43 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=&api-version=1.0 response: body: - string: '{"etag":"H68ukYphI8PWKC1LfrhZ62j5XRA","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}' + string: '{"etag":"QTQAIjKrG6f4WEtyRyGBCQ9pgEL","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:43+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -1847,17 +1847,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:43 GMT + - Fri, 03 Jan 2020 20:39:43 GMT etag: - - '"H68ukYphI8PWKC1LfrhZ62j5XRA"' + - '"QTQAIjKrG6f4WEtyRyGBCQ9pgEL"' last-modified: - - Tue, 31 Dec 2019 00:58:44 GMT + - Fri, 03 Jan 2020 20:39:43 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzODQ=;sn=913384 + - zAJw6V16=NDotMSM5NzEyMDE=;sn=971201 transfer-encoding: - chunked status: @@ -1883,14 +1883,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:43 GMT + - Jan, 03 2020 20:39:43 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 response: body: - string: '{"etag":"NQt8w31EQCxfob1lvEarO5u9Lkl","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"Dq3V1zXW5VIBYG6CWS3Czo3Us4s","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:44+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -1915,17 +1915,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:44 GMT + - Fri, 03 Jan 2020 20:39:43 GMT etag: - - '"NQt8w31EQCxfob1lvEarO5u9Lkl"' + - '"Dq3V1zXW5VIBYG6CWS3Czo3Us4s"' last-modified: - - Tue, 31 Dec 2019 00:58:44 GMT + - Fri, 03 Jan 2020 20:39:44 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzODU=;sn=913385 + - zAJw6V16=NDotMSM5NzEyMDI=;sn=971202 transfer-encoding: - chunked status: @@ -1951,14 +1951,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:44 GMT + - Jan, 03 2020 20:39:43 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 response: body: - string: '{"etag":"g6xdKQ4Z4Po3vJuwj996WB51pQu","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"fsw1v3Pjh3byhRJYAeRyWuKTnkI","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:44+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -1983,17 +1983,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:44 GMT + - Fri, 03 Jan 2020 20:39:43 GMT etag: - - '"g6xdKQ4Z4Po3vJuwj996WB51pQu"' + - '"fsw1v3Pjh3byhRJYAeRyWuKTnkI"' last-modified: - - Tue, 31 Dec 2019 00:58:44 GMT + - Fri, 03 Jan 2020 20:39:44 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzODY=;sn=913386 + - zAJw6V16=NDotMSM5NzEyMDM=;sn=971203 transfer-encoding: - chunked status: @@ -2013,14 +2013,14 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:44 GMT + - Jan, 03 2020 20:39:43 GMT method: GET - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"g6xdKQ4Z4Po3vJuwj996WB51pQu","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"fsw1v3Pjh3byhRJYAeRyWuKTnkI","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"},{"etag":"H68ukYphI8PWKC1LfrhZ62j5XRA","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:44+00:00"},{"etag":"QTQAIjKrG6f4WEtyRyGBCQ9pgEL","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:43+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -2045,13 +2045,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:44 GMT + - Fri, 03 Jan 2020 20:39:44 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzODY=;sn=913386 + - zAJw6V16=NDotMSM5NzEyMDM=;sn=971203 transfer-encoding: - chunked status: @@ -2071,20 +2071,20 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"g6xdKQ4Z4Po3vJuwj996WB51pQu"' + - '"fsw1v3Pjh3byhRJYAeRyWuKTnkI"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:44 GMT + - Jan, 03 2020 20:39:44 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 response: body: - string: '{"etag":"g6xdKQ4Z4Po3vJuwj996WB51pQu","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"fsw1v3Pjh3byhRJYAeRyWuKTnkI","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:44+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -2109,17 +2109,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:44 GMT + - Fri, 03 Jan 2020 20:39:44 GMT etag: - - '"g6xdKQ4Z4Po3vJuwj996WB51pQu"' + - '"fsw1v3Pjh3byhRJYAeRyWuKTnkI"' last-modified: - - Tue, 31 Dec 2019 00:58:44 GMT + - Fri, 03 Jan 2020 20:39:44 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzODc=;sn=913387 + - zAJw6V16=NDotMSM5NzEyMDQ=;sn=971204 transfer-encoding: - chunked status: @@ -2139,18 +2139,18 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"H68ukYphI8PWKC1LfrhZ62j5XRA"' + - '"QTQAIjKrG6f4WEtyRyGBCQ9pgEL"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:44 GMT + - Jan, 03 2020 20:39:44 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=&api-version=1.0 response: body: - string: '{"etag":"H68ukYphI8PWKC1LfrhZ62j5XRA","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:44+00:00"}' + string: '{"etag":"QTQAIjKrG6f4WEtyRyGBCQ9pgEL","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:43+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -2175,17 +2175,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:45 GMT + - Fri, 03 Jan 2020 20:39:44 GMT etag: - - '"H68ukYphI8PWKC1LfrhZ62j5XRA"' + - '"QTQAIjKrG6f4WEtyRyGBCQ9pgEL"' last-modified: - - Tue, 31 Dec 2019 00:58:44 GMT + - Fri, 03 Jan 2020 20:39:43 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzODg=;sn=913388 + - zAJw6V16=NDotMSM5NzEyMDU=;sn=971205 transfer-encoding: - chunked status: @@ -2205,16 +2205,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:45 GMT + - Jan, 03 2020 20:39:44 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"},{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"},{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"},{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"},{"etag":"aSzjhsmqeTeHDK7Yma8eYRrCAHs","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:38+00:00"},{"etag":"qV6ZfRDAsbJSx3BaK53UxOj6oZQ","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -2239,13 +2239,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:45 GMT + - Fri, 03 Jan 2020 20:39:44 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -2265,16 +2265,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:45 GMT + - Jan, 03 2020 20:39:44 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"},{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -2299,13 +2299,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:45 GMT + - Fri, 03 Jan 2020 20:39:45 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -2329,12 +2329,12 @@ interactions: x-ms-content-sha256: - RRuSjhDZOX3KEhbLL6KJ66jTsZym2UoRjOklQ3aj5wk= x-ms-date: - - Dec, 31 2019 00:58:45 GMT + - Jan, 03 2020 20:39:45 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v1&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v1&api-version=1.0 response: body: - string: '{"etag":"RmUeJ2Ps01DL2vkdl2a6IuYUei9","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + string: '{"etag":"NO09oZaKIDhYChlVVCOYwkYKBix","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:46+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -2359,17 +2359,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:45 GMT etag: - - '"RmUeJ2Ps01DL2vkdl2a6IuYUei9"' + - '"NO09oZaKIDhYChlVVCOYwkYKBix"' last-modified: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:46 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzODk=;sn=913389 + - zAJw6V16=NDotMSM5NzEyMDY=;sn=971206 transfer-encoding: - chunked status: @@ -2393,12 +2393,12 @@ interactions: x-ms-content-sha256: - z7s/2bFY9I62DTRnO9PidfN+N9b8mIApAhhnmIDGhRo= x-ms-date: - - Dec, 31 2019 00:58:46 GMT + - Jan, 03 2020 20:39:45 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v2&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v2&api-version=1.0 response: body: - string: '{"etag":"OYSS3dHi8zhm56ijqfsea28VKh9","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + string: '{"etag":"vPxmcbZWfSkhCDpfONVq8IDdMmY","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:46+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -2423,17 +2423,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:45 GMT etag: - - '"OYSS3dHi8zhm56ijqfsea28VKh9"' + - '"vPxmcbZWfSkhCDpfONVq8IDdMmY"' last-modified: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:46 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzOTA=;sn=913390 + - zAJw6V16=NDotMSM5NzEyMDc=;sn=971207 transfer-encoding: - chunked status: @@ -2459,14 +2459,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:46 GMT + - Jan, 03 2020 20:39:45 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 response: body: - string: '{"etag":"onfQwPUt8z5Lxn6XYcOrNdweIPD","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"RqNK4G7rHRFuBYkWhWNWSGriuod","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:46+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -2491,17 +2491,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:45 GMT etag: - - '"onfQwPUt8z5Lxn6XYcOrNdweIPD"' + - '"RqNK4G7rHRFuBYkWhWNWSGriuod"' last-modified: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:46 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzOTE=;sn=913391 + - zAJw6V16=NDotMSM5NzEyMDg=;sn=971208 transfer-encoding: - chunked status: @@ -2527,14 +2527,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:46 GMT + - Jan, 03 2020 20:39:45 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 response: body: - string: '{"etag":"Tn2ElyT75LJ3kMVM8RzwRy9CJJo","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"gNP1pNI7dl2qa6nIzfp4RkgtJNO","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:46+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -2559,17 +2559,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:45 GMT etag: - - '"Tn2ElyT75LJ3kMVM8RzwRy9CJJo"' + - '"gNP1pNI7dl2qa6nIzfp4RkgtJNO"' last-modified: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:46 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzOTI=;sn=913392 + - zAJw6V16=NDotMSM5NzEyMDk=;sn=971209 transfer-encoding: - chunked status: @@ -2589,16 +2589,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:46 GMT + - Jan, 03 2020 20:39:46 GMT method: GET - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"onfQwPUt8z5Lxn6XYcOrNdweIPD","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"RqNK4G7rHRFuBYkWhWNWSGriuod","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"},{"etag":"Tn2ElyT75LJ3kMVM8RzwRy9CJJo","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:46+00:00"},{"etag":"gNP1pNI7dl2qa6nIzfp4RkgtJNO","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"},{"etag":"RmUeJ2Ps01DL2vkdl2a6IuYUei9","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"},{"etag":"OYSS3dHi8zhm56ijqfsea28VKh9","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:46+00:00"},{"etag":"NO09oZaKIDhYChlVVCOYwkYKBix","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:46+00:00"},{"etag":"vPxmcbZWfSkhCDpfONVq8IDdMmY","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:46+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -2623,13 +2623,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:46 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzOTI=;sn=913392 + - zAJw6V16=NDotMSM5NzEyMDk=;sn=971209 transfer-encoding: - chunked status: @@ -2649,20 +2649,20 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"onfQwPUt8z5Lxn6XYcOrNdweIPD"' + - '"RqNK4G7rHRFuBYkWhWNWSGriuod"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:47 GMT + - Jan, 03 2020 20:39:46 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 response: body: - string: '{"etag":"onfQwPUt8z5Lxn6XYcOrNdweIPD","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"RqNK4G7rHRFuBYkWhWNWSGriuod","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:46+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -2687,17 +2687,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:47 GMT + - Fri, 03 Jan 2020 20:39:46 GMT etag: - - '"onfQwPUt8z5Lxn6XYcOrNdweIPD"' + - '"RqNK4G7rHRFuBYkWhWNWSGriuod"' last-modified: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:46 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzOTM=;sn=913393 + - zAJw6V16=NDotMSM5NzEyMTA=;sn=971210 transfer-encoding: - chunked status: @@ -2717,20 +2717,20 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"Tn2ElyT75LJ3kMVM8RzwRy9CJJo"' + - '"gNP1pNI7dl2qa6nIzfp4RkgtJNO"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:47 GMT + - Jan, 03 2020 20:39:46 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 response: body: - string: '{"etag":"Tn2ElyT75LJ3kMVM8RzwRy9CJJo","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"gNP1pNI7dl2qa6nIzfp4RkgtJNO","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:46+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -2755,17 +2755,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:47 GMT + - Fri, 03 Jan 2020 20:39:46 GMT etag: - - '"Tn2ElyT75LJ3kMVM8RzwRy9CJJo"' + - '"gNP1pNI7dl2qa6nIzfp4RkgtJNO"' last-modified: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:46 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzOTQ=;sn=913394 + - zAJw6V16=NDotMSM5NzEyMTE=;sn=971211 transfer-encoding: - chunked status: @@ -2785,18 +2785,18 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"RmUeJ2Ps01DL2vkdl2a6IuYUei9"' + - '"NO09oZaKIDhYChlVVCOYwkYKBix"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:47 GMT + - Jan, 03 2020 20:39:46 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v1&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v1&api-version=1.0 response: body: - string: '{"etag":"RmUeJ2Ps01DL2vkdl2a6IuYUei9","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + string: '{"etag":"NO09oZaKIDhYChlVVCOYwkYKBix","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:46+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -2821,17 +2821,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:47 GMT + - Fri, 03 Jan 2020 20:39:46 GMT etag: - - '"RmUeJ2Ps01DL2vkdl2a6IuYUei9"' + - '"NO09oZaKIDhYChlVVCOYwkYKBix"' last-modified: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:46 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzOTU=;sn=913395 + - zAJw6V16=NDotMSM5NzEyMTI=;sn=971212 transfer-encoding: - chunked status: @@ -2851,18 +2851,18 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"OYSS3dHi8zhm56ijqfsea28VKh9"' + - '"vPxmcbZWfSkhCDpfONVq8IDdMmY"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:47 GMT + - Jan, 03 2020 20:39:46 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v2&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v2&api-version=1.0 response: body: - string: '{"etag":"OYSS3dHi8zhm56ijqfsea28VKh9","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:46+00:00"}' + string: '{"etag":"vPxmcbZWfSkhCDpfONVq8IDdMmY","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:46+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -2887,17 +2887,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:47 GMT + - Fri, 03 Jan 2020 20:39:47 GMT etag: - - '"OYSS3dHi8zhm56ijqfsea28VKh9"' + - '"vPxmcbZWfSkhCDpfONVq8IDdMmY"' last-modified: - - Tue, 31 Dec 2019 00:58:46 GMT + - Fri, 03 Jan 2020 20:39:46 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzOTY=;sn=913396 + - zAJw6V16=NDotMSM5NzEyMTM=;sn=971213 transfer-encoding: - chunked status: @@ -2917,16 +2917,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:48 GMT + - Jan, 03 2020 20:39:47 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"},{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"},{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"},{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"},{"etag":"aSzjhsmqeTeHDK7Yma8eYRrCAHs","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:38+00:00"},{"etag":"qV6ZfRDAsbJSx3BaK53UxOj6oZQ","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -2951,13 +2951,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:48 GMT + - Fri, 03 Jan 2020 20:39:47 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -2977,16 +2977,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:48 GMT + - Jan, 03 2020 20:39:47 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"},{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -3011,13 +3011,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:48 GMT + - Fri, 03 Jan 2020 20:39:47 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -3041,12 +3041,12 @@ interactions: x-ms-content-sha256: - RRuSjhDZOX3KEhbLL6KJ66jTsZym2UoRjOklQ3aj5wk= x-ms-date: - - Dec, 31 2019 00:58:48 GMT + - Jan, 03 2020 20:39:47 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 response: body: - string: '{"etag":"PpiXa3YtsgYvUCFkugGLlpIaHl3","key":"Color","label":"DestLabel","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}' + string: '{"etag":"fUP27LwwyVxBTBTM1YMWv47Awbb","key":"Color","label":"DestLabel","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:48+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -3071,17 +3071,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:49 GMT + - Fri, 03 Jan 2020 20:39:48 GMT etag: - - '"PpiXa3YtsgYvUCFkugGLlpIaHl3"' + - '"fUP27LwwyVxBTBTM1YMWv47Awbb"' last-modified: - - Tue, 31 Dec 2019 00:58:49 GMT + - Fri, 03 Jan 2020 20:39:48 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzOTc=;sn=913397 + - zAJw6V16=NDotMSM5NzEyMTQ=;sn=971214 transfer-encoding: - chunked status: @@ -3105,12 +3105,12 @@ interactions: x-ms-content-sha256: - z7s/2bFY9I62DTRnO9PidfN+N9b8mIApAhhnmIDGhRo= x-ms-date: - - Dec, 31 2019 00:58:49 GMT + - Jan, 03 2020 20:39:48 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 response: body: - string: '{"etag":"uTI2MOLMeikqJ6jshvbUdpz6nDD","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}' + string: '{"etag":"CxRAhz8iZlysVVB1usV7Fnzzz1f","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:48+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -3135,17 +3135,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:49 GMT + - Fri, 03 Jan 2020 20:39:48 GMT etag: - - '"uTI2MOLMeikqJ6jshvbUdpz6nDD"' + - '"CxRAhz8iZlysVVB1usV7Fnzzz1f"' last-modified: - - Tue, 31 Dec 2019 00:58:49 GMT + - Fri, 03 Jan 2020 20:39:48 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzOTg=;sn=913398 + - zAJw6V16=NDotMSM5NzEyMTU=;sn=971215 transfer-encoding: - chunked status: @@ -3171,14 +3171,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:49 GMT + - Jan, 03 2020 20:39:48 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 response: body: - string: '{"etag":"suBILjTn8BvBSqSsX3zYtCLFdgu","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"lCOtdNmTGzJaQieRJanZyT6ZGC7","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:48+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -3203,17 +3203,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:49 GMT + - Fri, 03 Jan 2020 20:39:48 GMT etag: - - '"suBILjTn8BvBSqSsX3zYtCLFdgu"' + - '"lCOtdNmTGzJaQieRJanZyT6ZGC7"' last-modified: - - Tue, 31 Dec 2019 00:58:49 GMT + - Fri, 03 Jan 2020 20:39:48 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTMzOTk=;sn=913399 + - zAJw6V16=NDotMSM5NzEyMTY=;sn=971216 transfer-encoding: - chunked status: @@ -3239,14 +3239,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:49 GMT + - Jan, 03 2020 20:39:48 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 response: body: - string: '{"etag":"fUK8HCoC7EXYklVdGPGyJF5TazE","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"0CjZ8l0NW0f7P2t2G4suY0rxdmq","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:49+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -3271,17 +3271,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:49 GMT + - Fri, 03 Jan 2020 20:39:48 GMT etag: - - '"fUK8HCoC7EXYklVdGPGyJF5TazE"' + - '"0CjZ8l0NW0f7P2t2G4suY0rxdmq"' last-modified: - - Tue, 31 Dec 2019 00:58:49 GMT + - Fri, 03 Jan 2020 20:39:49 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MDA=;sn=913400 + - zAJw6V16=NDotMSM5NzEyMTc=;sn=971217 transfer-encoding: - chunked status: @@ -3301,14 +3301,14 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:49 GMT + - Jan, 03 2020 20:39:48 GMT method: GET - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"fUK8HCoC7EXYklVdGPGyJF5TazE","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"0CjZ8l0NW0f7P2t2G4suY0rxdmq","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"},{"etag":"uTI2MOLMeikqJ6jshvbUdpz6nDD","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:49+00:00"},{"etag":"CxRAhz8iZlysVVB1usV7Fnzzz1f","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:48+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -3333,13 +3333,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:49 GMT + - Fri, 03 Jan 2020 20:39:49 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MDA=;sn=913400 + - zAJw6V16=NDotMSM5NzEyMTc=;sn=971217 transfer-encoding: - chunked status: @@ -3359,20 +3359,20 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"fUK8HCoC7EXYklVdGPGyJF5TazE"' + - '"0CjZ8l0NW0f7P2t2G4suY0rxdmq"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:49 GMT + - Jan, 03 2020 20:39:49 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 response: body: - string: '{"etag":"fUK8HCoC7EXYklVdGPGyJF5TazE","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"0CjZ8l0NW0f7P2t2G4suY0rxdmq","key":".appconfig.featureflag/Beta","label":"DestLabel","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:49+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -3397,17 +3397,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:50 GMT + - Fri, 03 Jan 2020 20:39:49 GMT etag: - - '"fUK8HCoC7EXYklVdGPGyJF5TazE"' + - '"0CjZ8l0NW0f7P2t2G4suY0rxdmq"' last-modified: - - Tue, 31 Dec 2019 00:58:49 GMT + - Fri, 03 Jan 2020 20:39:49 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MDE=;sn=913401 + - zAJw6V16=NDotMSM5NzEyMTg=;sn=971218 transfer-encoding: - chunked status: @@ -3427,18 +3427,18 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"uTI2MOLMeikqJ6jshvbUdpz6nDD"' + - '"CxRAhz8iZlysVVB1usV7Fnzzz1f"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:50 GMT + - Jan, 03 2020 20:39:49 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 response: body: - string: '{"etag":"uTI2MOLMeikqJ6jshvbUdpz6nDD","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:49+00:00"}' + string: '{"etag":"CxRAhz8iZlysVVB1usV7Fnzzz1f","key":"Color","label":"DestLabel","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:48+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -3463,17 +3463,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:50 GMT + - Fri, 03 Jan 2020 20:39:49 GMT etag: - - '"uTI2MOLMeikqJ6jshvbUdpz6nDD"' + - '"CxRAhz8iZlysVVB1usV7Fnzzz1f"' last-modified: - - Tue, 31 Dec 2019 00:58:49 GMT + - Fri, 03 Jan 2020 20:39:48 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MDI=;sn=913402 + - zAJw6V16=NDotMSM5NzEyMTk=;sn=971219 transfer-encoding: - chunked status: @@ -3493,16 +3493,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:50 GMT + - Jan, 03 2020 20:39:49 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"},{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"},{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"},{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"},{"etag":"aSzjhsmqeTeHDK7Yma8eYRrCAHs","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:38+00:00"},{"etag":"qV6ZfRDAsbJSx3BaK53UxOj6oZQ","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -3527,13 +3527,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:50 GMT + - Fri, 03 Jan 2020 20:39:49 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -3553,16 +3553,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:50 GMT + - Jan, 03 2020 20:39:50 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"},{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -3587,13 +3587,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:51 GMT + - Fri, 03 Jan 2020 20:39:50 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -3617,12 +3617,12 @@ interactions: x-ms-content-sha256: - RRuSjhDZOX3KEhbLL6KJ66jTsZym2UoRjOklQ3aj5wk= x-ms-date: - - Dec, 31 2019 00:58:51 GMT + - Jan, 03 2020 20:39:50 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=&api-version=1.0 response: body: - string: '{"etag":"2IS5lrf8PbQlgb4Y9HLLkcJshzu","key":"Color","label":null,"content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}' + string: '{"etag":"8wZYAeoYY8ml6XhTrqch0it1x7O","key":"Color","label":null,"content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:51+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -3647,17 +3647,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:51 GMT + - Fri, 03 Jan 2020 20:39:50 GMT etag: - - '"2IS5lrf8PbQlgb4Y9HLLkcJshzu"' + - '"8wZYAeoYY8ml6XhTrqch0it1x7O"' last-modified: - - Tue, 31 Dec 2019 00:58:52 GMT + - Fri, 03 Jan 2020 20:39:51 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MDM=;sn=913403 + - zAJw6V16=NDotMSM5NzEyMjA=;sn=971220 transfer-encoding: - chunked status: @@ -3681,12 +3681,12 @@ interactions: x-ms-content-sha256: - z7s/2bFY9I62DTRnO9PidfN+N9b8mIApAhhnmIDGhRo= x-ms-date: - - Dec, 31 2019 00:58:51 GMT + - Jan, 03 2020 20:39:50 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=&api-version=1.0 response: body: - string: '{"etag":"GzTCyEo4wxvKvO33QYzjMGJEGzb","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}' + string: '{"etag":"sgja5wJCxnH2wpNXFBM5K1FtLgC","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:51+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -3711,17 +3711,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:51 GMT + - Fri, 03 Jan 2020 20:39:50 GMT etag: - - '"GzTCyEo4wxvKvO33QYzjMGJEGzb"' + - '"sgja5wJCxnH2wpNXFBM5K1FtLgC"' last-modified: - - Tue, 31 Dec 2019 00:58:52 GMT + - Fri, 03 Jan 2020 20:39:51 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MDQ=;sn=913404 + - zAJw6V16=NDotMSM5NzEyMjE=;sn=971221 transfer-encoding: - chunked status: @@ -3747,14 +3747,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:51 GMT + - Jan, 03 2020 20:39:50 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 response: body: - string: '{"etag":"I2W1j6Hg3wFikkK5MRXOn6wJUNh","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"lAHIfI0RsJCQ4txDkrx7HrsWfs8","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:51+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -3779,17 +3779,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:51 GMT + - Fri, 03 Jan 2020 20:39:50 GMT etag: - - '"I2W1j6Hg3wFikkK5MRXOn6wJUNh"' + - '"lAHIfI0RsJCQ4txDkrx7HrsWfs8"' last-modified: - - Tue, 31 Dec 2019 00:58:52 GMT + - Fri, 03 Jan 2020 20:39:51 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MDU=;sn=913405 + - zAJw6V16=NDotMSM5NzEyMjI=;sn=971222 transfer-encoding: - chunked status: @@ -3815,14 +3815,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:51 GMT + - Jan, 03 2020 20:39:50 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 response: body: - string: '{"etag":"OwKOosGdsgphZlWD6H93VXHeQeA","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"IdJpymZq57oCLABOIxR5dZ40xWs","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:51+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -3847,17 +3847,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:51 GMT + - Fri, 03 Jan 2020 20:39:51 GMT etag: - - '"OwKOosGdsgphZlWD6H93VXHeQeA"' + - '"IdJpymZq57oCLABOIxR5dZ40xWs"' last-modified: - - Tue, 31 Dec 2019 00:58:52 GMT + - Fri, 03 Jan 2020 20:39:51 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MDY=;sn=913406 + - zAJw6V16=NDotMSM5NzEyMjM=;sn=971223 transfer-encoding: - chunked status: @@ -3877,14 +3877,14 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:52 GMT + - Jan, 03 2020 20:39:51 GMT method: GET - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OwKOosGdsgphZlWD6H93VXHeQeA","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"IdJpymZq57oCLABOIxR5dZ40xWs","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"},{"etag":"GzTCyEo4wxvKvO33QYzjMGJEGzb","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:51+00:00"},{"etag":"sgja5wJCxnH2wpNXFBM5K1FtLgC","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:51+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -3909,13 +3909,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:52 GMT + - Fri, 03 Jan 2020 20:39:51 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MDY=;sn=913406 + - zAJw6V16=NDotMSM5NzEyMjM=;sn=971223 transfer-encoding: - chunked status: @@ -3935,20 +3935,20 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"OwKOosGdsgphZlWD6H93VXHeQeA"' + - '"IdJpymZq57oCLABOIxR5dZ40xWs"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:52 GMT + - Jan, 03 2020 20:39:51 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 response: body: - string: '{"etag":"OwKOosGdsgphZlWD6H93VXHeQeA","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"IdJpymZq57oCLABOIxR5dZ40xWs","key":".appconfig.featureflag/Beta","label":null,"content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:51+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -3973,17 +3973,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:52 GMT + - Fri, 03 Jan 2020 20:39:51 GMT etag: - - '"OwKOosGdsgphZlWD6H93VXHeQeA"' + - '"IdJpymZq57oCLABOIxR5dZ40xWs"' last-modified: - - Tue, 31 Dec 2019 00:58:52 GMT + - Fri, 03 Jan 2020 20:39:51 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MDc=;sn=913407 + - zAJw6V16=NDotMSM5NzEyMjQ=;sn=971224 transfer-encoding: - chunked status: @@ -4003,18 +4003,18 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"GzTCyEo4wxvKvO33QYzjMGJEGzb"' + - '"sgja5wJCxnH2wpNXFBM5K1FtLgC"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:52 GMT + - Jan, 03 2020 20:39:51 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=&api-version=1.0 response: body: - string: '{"etag":"GzTCyEo4wxvKvO33QYzjMGJEGzb","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:52+00:00"}' + string: '{"etag":"sgja5wJCxnH2wpNXFBM5K1FtLgC","key":"Color","label":null,"content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:51+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -4039,17 +4039,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:52 GMT + - Fri, 03 Jan 2020 20:39:51 GMT etag: - - '"GzTCyEo4wxvKvO33QYzjMGJEGzb"' + - '"sgja5wJCxnH2wpNXFBM5K1FtLgC"' last-modified: - - Tue, 31 Dec 2019 00:58:52 GMT + - Fri, 03 Jan 2020 20:39:51 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MDg=;sn=913408 + - zAJw6V16=NDotMSM5NzEyMjU=;sn=971225 transfer-encoding: - chunked status: @@ -4069,16 +4069,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:53 GMT + - Jan, 03 2020 20:39:52 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"},{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"},{"etag":"QjOa6IE9TXRO0wgSYctpnFZpvzG","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:38+00:00"},{"etag":"4PTxAbMGNgT2MoamZByrCUETZq7","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"},{"etag":"aSzjhsmqeTeHDK7Yma8eYRrCAHs","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:38+00:00"},{"etag":"qV6ZfRDAsbJSx3BaK53UxOj6oZQ","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -4103,13 +4103,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:53 GMT + - Fri, 03 Jan 2020 20:39:52 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -4129,16 +4129,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:53 GMT + - Jan, 03 2020 20:39:52 GMT method: GET - uri: https://sourcea4yseu3i3vvlmwdnee.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"OAu94YW2obJtmCB04EE3wr3jFJ7","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"tNSkfA4ELXHpiyCRBcmTfAsd6tH","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:39+00:00"},{"etag":"2lq1WZ6c7waV1eFeuPAUSEjJCtK","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:39+00:00"},{"etag":"vWAiEI8bqxNCMasJj4YrgtFmfbj","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:40+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:40+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -4163,13 +4163,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:53 GMT + - Fri, 03 Jan 2020 20:39:52 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NDotMSM5NTY4MDc=;sn=956807 + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 transfer-encoding: - chunked status: @@ -4193,12 +4193,12 @@ interactions: x-ms-content-sha256: - RRuSjhDZOX3KEhbLL6KJ66jTsZym2UoRjOklQ3aj5wk= x-ms-date: - - Dec, 31 2019 00:58:53 GMT + - Jan, 03 2020 20:39:52 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v1&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v1&api-version=1.0 response: body: - string: '{"etag":"RzfA9hOtDvzjl3kFmY2TRcxSBf7","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + string: '{"etag":"FkX6LzyxMd0kKmsYziSQXLSNh9e","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:53+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -4223,17 +4223,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT etag: - - '"RzfA9hOtDvzjl3kFmY2TRcxSBf7"' + - '"FkX6LzyxMd0kKmsYziSQXLSNh9e"' last-modified: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MDk=;sn=913409 + - zAJw6V16=NDotMSM5NzEyMjY=;sn=971226 transfer-encoding: - chunked status: @@ -4257,12 +4257,12 @@ interactions: x-ms-content-sha256: - z7s/2bFY9I62DTRnO9PidfN+N9b8mIApAhhnmIDGhRo= x-ms-date: - - Dec, 31 2019 00:58:54 GMT + - Jan, 03 2020 20:39:53 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v2&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v2&api-version=1.0 response: body: - string: '{"etag":"45v679Cnuf9iv26SMAJs55nkXKj","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + string: '{"etag":"DhgwFoCuNJxnvwHp0moXwZqoJcJ","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:53+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -4287,17 +4287,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT etag: - - '"45v679Cnuf9iv26SMAJs55nkXKj"' + - '"DhgwFoCuNJxnvwHp0moXwZqoJcJ"' last-modified: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MTA=;sn=913410 + - zAJw6V16=NDotMSM5NzEyMjc=;sn=971227 transfer-encoding: - chunked status: @@ -4323,14 +4323,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:54 GMT + - Jan, 03 2020 20:39:53 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 response: body: - string: '{"etag":"UOSEURn8Ps6nbzXF8KeGhKpAYxX","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"pJ8jPlJpd7PfUAHinJ2Sa3LXhkF","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:53+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -4355,17 +4355,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT etag: - - '"UOSEURn8Ps6nbzXF8KeGhKpAYxX"' + - '"pJ8jPlJpd7PfUAHinJ2Sa3LXhkF"' last-modified: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MTE=;sn=913411 + - zAJw6V16=NDotMSM5NzEyMjg=;sn=971228 transfer-encoding: - chunked status: @@ -4391,14 +4391,14 @@ interactions: x-ms-content-sha256: - ZBbQzjiWSA6Bcvu0IiEanYfqopxyCiYHLYi19RFZuKk= x-ms-date: - - Dec, 31 2019 00:58:54 GMT + - Jan, 03 2020 20:39:53 GMT method: PUT - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 response: body: - string: '{"etag":"rUIy4aZJbh0TVDtjn2TTXnrOiDY","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"sVv00V7srU4OWjKmn9WaIOoqqAJ","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:53+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -4423,17 +4423,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT etag: - - '"rUIy4aZJbh0TVDtjn2TTXnrOiDY"' + - '"sVv00V7srU4OWjKmn9WaIOoqqAJ"' last-modified: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MTI=;sn=913412 + - zAJw6V16=NDotMSM5NzEyMjk=;sn=971229 transfer-encoding: - chunked status: @@ -4453,16 +4453,16 @@ interactions: x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:54 GMT + - Jan, 03 2020 20:39:53 GMT method: GET - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 response: body: - string: '{"items":[{"etag":"UOSEURn8Ps6nbzXF8KeGhKpAYxX","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"items":[{"etag":"pJ8jPlJpd7PfUAHinJ2Sa3LXhkF","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"},{"etag":"rUIy4aZJbh0TVDtjn2TTXnrOiDY","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:53+00:00"},{"etag":"sVv00V7srU4OWjKmn9WaIOoqqAJ","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"},{"etag":"RzfA9hOtDvzjl3kFmY2TRcxSBf7","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"},{"etag":"45v679Cnuf9iv26SMAJs55nkXKj","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}]}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:53+00:00"},{"etag":"FkX6LzyxMd0kKmsYziSQXLSNh9e","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:53+00:00"},{"etag":"DhgwFoCuNJxnvwHp0moXwZqoJcJ","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:53+00:00"}]}' headers: access-control-allow-credentials: - 'true' @@ -4487,13 +4487,13 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kvset+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MTI=;sn=913412 + - zAJw6V16=NDotMSM5NzEyMjk=;sn=971229 transfer-encoding: - chunked status: @@ -4513,20 +4513,20 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"UOSEURn8Ps6nbzXF8KeGhKpAYxX"' + - '"pJ8jPlJpd7PfUAHinJ2Sa3LXhkF"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:54 GMT + - Jan, 03 2020 20:39:53 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 response: body: - string: '{"etag":"UOSEURn8Ps6nbzXF8KeGhKpAYxX","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"pJ8jPlJpd7PfUAHinJ2Sa3LXhkF","key":".appconfig.featureflag/Beta","label":"v1","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:53+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -4551,17 +4551,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:55 GMT + - Fri, 03 Jan 2020 20:39:54 GMT etag: - - '"UOSEURn8Ps6nbzXF8KeGhKpAYxX"' + - '"pJ8jPlJpd7PfUAHinJ2Sa3LXhkF"' last-modified: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MTM=;sn=913413 + - zAJw6V16=NDotMSM5NzEyMzA=;sn=971230 transfer-encoding: - chunked status: @@ -4581,20 +4581,20 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"rUIy4aZJbh0TVDtjn2TTXnrOiDY"' + - '"sVv00V7srU4OWjKmn9WaIOoqqAJ"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:55 GMT + - Jan, 03 2020 20:39:54 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 response: body: - string: '{"etag":"rUIy4aZJbh0TVDtjn2TTXnrOiDY","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": + string: '{"etag":"sVv00V7srU4OWjKmn9WaIOoqqAJ","key":".appconfig.featureflag/Beta","label":"v2","content_type":"application/vnd.microsoft.appconfig.ff+json;charset=utf-8","value":"{\"id\": \"Beta\", \"description\": null, \"enabled\": false, \"conditions\": {\"client_filters\": - []}}","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + []}}","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:53+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -4619,17 +4619,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:55 GMT + - Fri, 03 Jan 2020 20:39:54 GMT etag: - - '"rUIy4aZJbh0TVDtjn2TTXnrOiDY"' + - '"sVv00V7srU4OWjKmn9WaIOoqqAJ"' last-modified: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MTQ=;sn=913414 + - zAJw6V16=NDotMSM5NzEyMzE=;sn=971231 transfer-encoding: - chunked status: @@ -4649,18 +4649,18 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"RzfA9hOtDvzjl3kFmY2TRcxSBf7"' + - '"FkX6LzyxMd0kKmsYziSQXLSNh9e"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:55 GMT + - Jan, 03 2020 20:39:54 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v1&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v1&api-version=1.0 response: body: - string: '{"etag":"RzfA9hOtDvzjl3kFmY2TRcxSBf7","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + string: '{"etag":"FkX6LzyxMd0kKmsYziSQXLSNh9e","key":"Color","label":"v1","content_type":null,"value":"Red","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:53+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -4685,17 +4685,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:55 GMT + - Fri, 03 Jan 2020 20:39:54 GMT etag: - - '"RzfA9hOtDvzjl3kFmY2TRcxSBf7"' + - '"FkX6LzyxMd0kKmsYziSQXLSNh9e"' last-modified: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MTU=;sn=913415 + - zAJw6V16=NDotMSM5NzEyMzI=;sn=971232 transfer-encoding: - chunked status: @@ -4715,18 +4715,18 @@ interactions: Content-Type: - application/vnd.microsoft.appconfig.kv+json; If-Match: - - '"45v679Cnuf9iv26SMAJs55nkXKj"' + - '"DhgwFoCuNJxnvwHp0moXwZqoJcJ"' User-Agent: - AzconfigClient/1.0.0/CLI x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Dec, 31 2019 00:58:55 GMT + - Jan, 03 2020 20:39:54 GMT method: DELETE - uri: https://destination4dcuuqkdqkajy.azconfig.io/kv/Color?label=v2&api-version=1.0 + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v2&api-version=1.0 response: body: - string: '{"etag":"45v679Cnuf9iv26SMAJs55nkXKj","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2019-12-31T00:58:54+00:00"}' + string: '{"etag":"DhgwFoCuNJxnvwHp0moXwZqoJcJ","key":"Color","label":"v2","content_type":null,"value":"Blue","tags":{},"locked":false,"last_modified":"2020-01-03T20:39:53+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -4751,17 +4751,17 @@ interactions: content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 31 Dec 2019 00:58:55 GMT + - Fri, 03 Jan 2020 20:39:54 GMT etag: - - '"45v679Cnuf9iv26SMAJs55nkXKj"' + - '"DhgwFoCuNJxnvwHp0moXwZqoJcJ"' last-modified: - - Tue, 31 Dec 2019 00:58:54 GMT + - Fri, 03 Jan 2020 20:39:53 GMT server: - openresty/1.15.8.1 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NTotMSM5MTM0MTY=;sn=913416 + - zAJw6V16=NDotMSM5NzEyMzM=;sn=971233 transfer-encoding: - chunked status: From ae369fe7a895107cbfbf1ce77f0b998fce02d59c Mon Sep 17 00:00:00 2001 From: Avani Gupta Date: Tue, 7 Jan 2020 13:13:46 -0800 Subject: [PATCH 5/6] resolving comments --- .../azure/cli/command_modules/appconfig/_help.py | 12 ++---------- .../cli/command_modules/appconfig/_params.py | 10 +++++----- .../cli/command_modules/appconfig/keyvalue.py | 15 ++++++++------- .../tests/latest/export_features_prop.json | 2 +- 4 files changed, 16 insertions(+), 23 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/_help.py b/src/azure-cli/azure/cli/command_modules/appconfig/_help.py index ba4c9dc2219..5b53c357aaf 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/_help.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/_help.py @@ -70,8 +70,6 @@ examples: - name: Export all keys and feature flags with label test to a json file. text: az appconfig kv export -n MyAppConfiguration --label test -d file --path D:/abc.json --format json - - name: Export all keys and feature flags with null label to another App Configuration. - text: az appconfig kv export -n MyAppConfiguration -d appconfig --dest-name AnotherAppConfiguration - name: Export all keys with null label to an App Service application. text: az appconfig kv export -n MyAppConfiguration -d appservice --appservice-account MyAppService - name: Export all keys with label test excluding feature flags to a json file. @@ -80,8 +78,6 @@ text: az appconfig kv export -n MyAppConfiguration -d appconfig --dest-name AnotherAppConfiguration --key * --label * --preserve-labels - name: Export all keys and feature flags with all labels to another App Configuration and overwrite destination labels. text: az appconfig kv export -n MyAppConfiguration -d appconfig --dest-name AnotherAppConfiguration --key * --label * --dest-label ExportedKeys - - name: Export all keys and feature flags with all labels to another App Configuration and assign null label in destination AppConfig. - text: az appconfig kv export -n MyAppConfiguration -d appconfig --dest-name AnotherAppConfiguration --key * --label * """ helps['appconfig kv import'] = """ @@ -90,18 +86,14 @@ examples: - name: Import all keys and feature flags from a file and apply test label. text: az appconfig kv import -n MyAppConfiguration --label test -s file --path D:/abc.json --format json - - name: Import all keys and feature flags with null label and apply null label from an App Configuration. - text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration + - name: Import all keys and feature flags with null label and apply new label from an App Configuration. + text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --label ImportedKeys - name: Import all keys and apply null label from an App Service appliaction. text: az appconfig kv import -n MyAppConfiguration -s appservice --appservice-account MyAppService - name: Import all keys with label test and apply test2 label excluding feature flags from an App Configuration. text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-label test --label test2 --src-name AnotherAppConfiguration --skip-features - name: Import all keys and feature flags with all labels to another App Configuration. text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --src-key * --src-label * --preserve-labels - - name: Import all keys and feature flags with all labels to another App Configuration and overwrite labels. - text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --src-key * --src-label * --label ImportedKeys - - name: Import all keys and feature flags with all labels to another App Configuration and assign null label. - text: az appconfig kv import -n MyAppConfiguration -s appconfig --src-name AnotherAppConfiguration --src-key * --src-label * """ helps['appconfig kv list'] = """ 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 b2577c9ceca..fbae6e94cb9 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/_params.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/_params.py @@ -75,7 +75,7 @@ def load_arguments(self, _): c.argument('id_', options_list=['--id'], help='Id of the key to be regenerated. Can be found using az appconfig credential list command.') with self.argument_context('appconfig kv import') as c: - c.argument('label', help="Imported KVs and feature flags will be assigned with this label. If omitted, for file and appservice source, will assign null label by default. For AppConfig source, if neither --label nor --preserve-labels is specified, will assign null label by default. If there are duplicate keys in source AppConfig, only the last key will be imported with this label.") + 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('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('yes', help="Do not prompt for preview.") @@ -92,8 +92,8 @@ def load_arguments(self, _): c.argument('src_name', help='The name of the source App Configuration.') c.argument('src_connection_string', validator=validate_connection_string, help="Combination of access key and endpoint of the source store.") c.argument('src_key', help='If no key specified, import all keys by default. Support star sign as filters, for instance abc* means keys with abc as prefix. Similarly, *abc and *abc* are also supported. Key filtering not applicable for feature flags. By default, all feature flags with specified label will be imported.') - c.argument('src_label', help="Only keys with this label in source AppConfig will be imported. If no src-label specified, import keys with null label by default. Support star sign as filters, for instance * means all labels, abc* means labels with abc as prefix. Similarly, *abc and *abc* are also supported.") - c.argument('preserve_labels', arg_type=get_three_state_flag(), help="Original labels from source AppConfig will be preserved for all KVs. This argument should only be specified when --label is NOT provided.") + c.argument('src_label', help="Only keys with this label in source AppConfig will be imported. If no value specified, import keys with null label by default. Support star sign as filters, for instance * means all labels, abc* means labels with abc as prefix. Similarly, *abc and *abc* are also supported.") + c.argument('preserve_labels', arg_type=get_three_state_flag(), help="Flag to preserve labels from source AppConfig. This argument should NOT be specified along with --label.") 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. Required for AppService arguments') @@ -117,8 +117,8 @@ def load_arguments(self, _): with self.argument_context('appconfig kv export', arg_group='AppConfig') as c: c.argument('dest_name', help='The name of the destination App Configuration.') c.argument('dest_connection_string', validator=validate_connection_string, help="Combination of access key and endpoint of the destination store.") - c.argument('dest_label', help="Exported KVs will be labeled with this destination label. If neither --dest-label nor --preserve-labels is specified, will assign null label. If there are duplicate keys in source AppConfig, only the last key will be exported with dest-label.") - c.argument('preserve_labels', arg_type=get_three_state_flag(), help="Original labels from source AppConfig will be preserved for all KVs. This argument should only be specified when --dest-label is NOT provided.") + c.argument('dest_label', help="Exported KVs will be labeled with this destination label. If neither --dest-label nor --preserve-labels is specified, will assign null label.") + c.argument('preserve_labels', arg_type=get_three_state_flag(), help="Flag to preserve labels from source AppConfig. This argument should NOT be specified along with --dest-label.") with self.argument_context('appconfig kv export', 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. Required for AppService arguments') 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 71ca53b1ff6..a1c28557495 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/keyvalue.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/keyvalue.py @@ -161,13 +161,14 @@ def export_config(cmd, format_ = format_.lower() if format_ else None naming_convention = naming_convention.lower() - if destination == 'appconfig' and dest_label is not None and preserve_labels: - raise CLIError("Export failed! Please provide only one of these arguments: 'dest-label' or 'preserve-labels'. See 'az appconfig kv export -h' for examples.") - if destination == 'appconfig' and preserve_labels: - # We need dest_label to be the same as label for preview later. - # This will have no effect on label while writing to config store - # as we check preserve_labels again before labelling KVs. - dest_label = label + if destination == 'appconfig': + if dest_label is not None and preserve_labels: + raise CLIError("Export failed! Please provide only one of these arguments: 'dest-label' or 'preserve-labels'. See 'az appconfig kv export -h' for examples.") + if preserve_labels: + # We need dest_label to be the same as label for preview later. + # This will have no effect on label while writing to config store + # as we check preserve_labels again before labelling KVs. + dest_label = label # fetch key values from user's configstore src_kvs = __read_kv_from_config_store( diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/export_features_prop.json b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/export_features_prop.json index 525657e4503..5def2f0e99f 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/export_features_prop.json +++ b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/export_features_prop.json @@ -1,4 +1,4 @@ -#Mon Dec 30 11:27:28 Pacific Standard Time 2019 +#Tue Jan 07 13:12:22 Pacific Standard Time 2020 Color=Red Region=West US feature-management.FalseFeature=false From b5289ff40b84d875d3afe2b93eb9aa7f9a8d1e83 Mon Sep 17 00:00:00 2001 From: Jianhui Date: Sat, 11 Jan 2020 14:21:29 +0800 Subject: [PATCH 6/6] Test CredScan --- scripts/ci/credscan/CredScanSuppressions.json | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/ci/credscan/CredScanSuppressions.json b/scripts/ci/credscan/CredScanSuppressions.json index f64db47bb2a..98a6d606117 100644 --- a/scripts/ci/credscan/CredScanSuppressions.json +++ b/scripts/ci/credscan/CredScanSuppressions.json @@ -11,7 +11,6 @@ }, { "file": [ - "src\\azure-cli\\azure\\cli\\command_modules\\appconfig\\tests\\latest\\recordings\\test_appconfig_to_appconfig_import_export.yaml", "src\\azure-cli\\azure\\cli\\command_modules\\appconfig\\tests\\latest\\recordings\\test_azconfig_credential.yaml", "src\\azure-cli\\azure\\cli\\command_modules\\appconfig\\tests\\latest\\recordings\\test_azconfig_feature.yaml", "src\\azure-cli\\azure\\cli\\command_modules\\appconfig\\tests\\latest\\recordings\\test_azconfig_feature_filter.yaml",