diff --git a/scripts/ci/credscan/CredScanSuppressions.json b/scripts/ci/credscan/CredScanSuppressions.json index 98a6d606117..f64db47bb2a 100644 --- a/scripts/ci/credscan/CredScanSuppressions.json +++ b/scripts/ci/credscan/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/HISTORY.rst b/src/azure-cli/HISTORY.rst index 812624fa56e..fd0db0f8726 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -10,6 +10,7 @@ Release History **AppConfig** * Support import/export of keyvault references from/to appservice +* Support import/export of all labels from appconfig to appconfig **AppService** 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..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,12 +70,14 @@ 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. 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 """ helps['appconfig kv import'] = """ @@ -84,12 +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 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 """ 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 7aaf17acd6c..469ce9dec37 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 @@ -227,7 +227,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: @@ -238,9 +238,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..fbae6e94cb9 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/_params.py +++ b/src/azure-cli/azure/cli/command_modules/appconfig/_params.py @@ -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 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') 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.") + 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 dd27ad8a49b..284ef7b9a89 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 @@ -38,6 +38,7 @@ def import_config(cmd, label=None, prefix="", # prefix to add yes=False, + skip_features=False, # from-file parameters path=None, format_=None, @@ -48,10 +49,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 = [] @@ -68,6 +68,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 @@ -120,7 +128,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, @@ -131,18 +139,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 = [] @@ -150,6 +159,15 @@ def export_config(cmd, format_ = format_.lower() if format_ else None naming_convention = naming_convention.lower() + 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( cmd, name=name, connection_string=connection_string, key=key, label=label, prefix_to_remove=prefix) @@ -222,7 +240,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) 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 4b923fac002..6e99de5ee44 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,5 +1,4 @@ -#Mon Jan 13 20:24:18 China Standard Time 2020 - +#Mon Jan 20 09:34:31 Pacific Standard Time 2020 Color=Red Region=West US feature-management.FalseFeature=false 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..4b2bebea8eb --- /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.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":"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/a3b048c3-e654-bef9-bd13-962f029bd7df?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '519' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 03 Jan 2020 20:38:58 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.79 + method: GET + 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/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/a3b048c3-e654-bef9-bd13-962f029bd7df?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '248' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 03 Jan 2020 20:39:09 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.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":"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 + content-length: + - '523' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 03 Jan 2020 20:39:09 GMT + etag: + - W/"2300fc80-0000-0100-0000-5e0fa6690000" + 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.79 + 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":"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, + 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-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: + - '78348' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 03 Jan 2020 20:39:17 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: + - 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 +- 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.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":"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 + content-length: + - '1389' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 03 Jan 2020 20:39:17 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.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":"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/452e2b13-7241-a44f-294f-02534feaf11b?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '519' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 03 Jan 2020 20:39:18 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.79 + method: GET + 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/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/452e2b13-7241-a44f-294f-02534feaf11b?api-version=2019-10-01 + cache-control: + - no-cache + content-length: + - '248' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 03 Jan 2020 20:39:29 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.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":"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 + content-length: + - '523' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 03 Jan 2020 20:39:29 GMT + etag: + - W/"d6009759-0000-0100-0000-5e0fa6780000" + 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.79 + 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":"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":"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, + 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-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: + - '78872' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 03 Jan 2020 20:39:35 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: + - 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 +- 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.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":"+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 + content-length: + - '1389' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 03 Jan 2020 20:39:37 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: + - Jan, 03 2020 20:39:37 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.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: + - Fri, 03 Jan 2020 20:39:37 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: + - Jan, 03 2020 20:39:37 GMT + method: PUT + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv/Color?label=v1&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:37 GMT + etag: + - '"aSzjhsmqeTeHDK7Yma8eYRrCAHs"' + last-modified: + - Fri, 03 Jan 2020 20:39:38 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDU=;sn=503445 + 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: + - Jan, 03 2020 20:39:38 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.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: + - Fri, 03 Jan 2020 20:39: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: + - Jan, 03 2020 20:39:38 GMT + method: PUT + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv/Color?label=v2&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:38 GMT + etag: + - '"qV6ZfRDAsbJSx3BaK53UxOj6oZQ"' + last-modified: + - Fri, 03 Jan 2020 20:39:39 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDY=;sn=503446 + 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: + - Jan, 03 2020 20:39:38 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.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: + - Fri, 03 Jan 2020 20:39: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: + - Jan, 03 2020 20:39:39 GMT + method: PUT + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:39 GMT + etag: + - '"tNSkfA4ELXHpiyCRBcmTfAsd6tH"' + last-modified: + - Fri, 03 Jan 2020 20:39:39 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDc=;sn=503447 + 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: + - Jan, 03 2020 20:39:39 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.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: + - Fri, 03 Jan 2020 20:39: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: + - Jan, 03 2020 20:39:39 GMT + method: PUT + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:39 GMT + etag: + - '"vWAiEI8bqxNCMasJj4YrgtFmfbj"' + last-modified: + - Fri, 03 Jan 2020 20:39:40 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:39 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"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' + 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: + - Fri, 03 Jan 2020 20:39:40 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:40 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:40 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:40 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:41 GMT + etag: + - '"4rjiT27bNj66uGOCw7XSb55t9eV"' + last-modified: + - Fri, 03 Jan 2020 20:39:41 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzExOTQ=;sn=971194 + 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: + - Jan, 03 2020 20:39:41 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:41 GMT + etag: + - '"b88nUErm7z9mUPstAvNQiL5b0DI"' + last-modified: + - Fri, 03 Jan 2020 20:39:41 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzExOTU=;sn=971195 + 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: + - Jan, 03 2020 20:39:41 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:41 GMT + etag: + - '"0GkiAphKzhocO1pawVqeqeVnYu2"' + last-modified: + - Fri, 03 Jan 2020 20:39:41 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzExOTY=;sn=971196 + 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: + - Jan, 03 2020 20:39:41 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:41 GMT + etag: + - '"t65xqC1TMgCfXMnE75BIflz29e5"' + last-modified: + - Fri, 03 Jan 2020 20:39:41 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzExOTc=;sn=971197 + 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: + - Jan, 03 2020 20:39:41 GMT + method: GET + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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' + 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: + - Fri, 03 Jan 2020 20:39:41 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzExOTc=;sn=971197 + 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: + - '"t65xqC1TMgCfXMnE75BIflz29e5"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:41 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:42 GMT + etag: + - '"t65xqC1TMgCfXMnE75BIflz29e5"' + last-modified: + - Fri, 03 Jan 2020 20:39:41 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzExOTg=;sn=971198 + 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: + - '"b88nUErm7z9mUPstAvNQiL5b0DI"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:42 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:42 GMT + etag: + - '"b88nUErm7z9mUPstAvNQiL5b0DI"' + last-modified: + - Fri, 03 Jan 2020 20:39:41 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzExOTk=;sn=971199 + 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: + - Jan, 03 2020 20:39:42 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"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' + 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: + - Fri, 03 Jan 2020 20:39:42 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:42 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:42 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:43 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:43 GMT + etag: + - '"eFTL8c9Y9gMFD510FWZKQAX3d1Z"' + last-modified: + - Fri, 03 Jan 2020 20:39:43 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMDA=;sn=971200 + 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: + - Jan, 03 2020 20:39:43 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:43 GMT + etag: + - '"QTQAIjKrG6f4WEtyRyGBCQ9pgEL"' + last-modified: + - Fri, 03 Jan 2020 20:39:43 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMDE=;sn=971201 + 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: + - Jan, 03 2020 20:39:43 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:43 GMT + etag: + - '"Dq3V1zXW5VIBYG6CWS3Czo3Us4s"' + last-modified: + - Fri, 03 Jan 2020 20:39:44 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMDI=;sn=971202 + 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: + - Jan, 03 2020 20:39:43 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:43 GMT + etag: + - '"fsw1v3Pjh3byhRJYAeRyWuKTnkI"' + last-modified: + - Fri, 03 Jan 2020 20:39:44 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMDM=;sn=971203 + 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: + - Jan, 03 2020 20:39:43 GMT + method: GET + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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' + 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: + - Fri, 03 Jan 2020 20:39:44 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMDM=;sn=971203 + 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: + - '"fsw1v3Pjh3byhRJYAeRyWuKTnkI"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:44 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:44 GMT + etag: + - '"fsw1v3Pjh3byhRJYAeRyWuKTnkI"' + last-modified: + - Fri, 03 Jan 2020 20:39:44 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMDQ=;sn=971204 + 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: + - '"QTQAIjKrG6f4WEtyRyGBCQ9pgEL"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:44 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:44 GMT + etag: + - '"QTQAIjKrG6f4WEtyRyGBCQ9pgEL"' + last-modified: + - Fri, 03 Jan 2020 20:39:43 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMDU=;sn=971205 + 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: + - Jan, 03 2020 20:39:44 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"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' + 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: + - Fri, 03 Jan 2020 20:39:44 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:44 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:45 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:45 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v1&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:45 GMT + etag: + - '"NO09oZaKIDhYChlVVCOYwkYKBix"' + last-modified: + - Fri, 03 Jan 2020 20:39:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMDY=;sn=971206 + 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: + - Jan, 03 2020 20:39:45 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v2&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:45 GMT + etag: + - '"vPxmcbZWfSkhCDpfONVq8IDdMmY"' + last-modified: + - Fri, 03 Jan 2020 20:39:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMDc=;sn=971207 + 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: + - Jan, 03 2020 20:39:45 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:45 GMT + etag: + - '"RqNK4G7rHRFuBYkWhWNWSGriuod"' + last-modified: + - Fri, 03 Jan 2020 20:39:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMDg=;sn=971208 + 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: + - Jan, 03 2020 20:39:45 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:45 GMT + etag: + - '"gNP1pNI7dl2qa6nIzfp4RkgtJNO"' + last-modified: + - Fri, 03 Jan 2020 20:39:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMDk=;sn=971209 + 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: + - Jan, 03 2020 20:39:46 GMT + method: GET + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"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' + 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: + - Fri, 03 Jan 2020 20:39:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMDk=;sn=971209 + 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: + - '"RqNK4G7rHRFuBYkWhWNWSGriuod"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:46 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:46 GMT + etag: + - '"RqNK4G7rHRFuBYkWhWNWSGriuod"' + last-modified: + - Fri, 03 Jan 2020 20:39:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMTA=;sn=971210 + 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: + - '"gNP1pNI7dl2qa6nIzfp4RkgtJNO"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:46 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:46 GMT + etag: + - '"gNP1pNI7dl2qa6nIzfp4RkgtJNO"' + last-modified: + - Fri, 03 Jan 2020 20:39:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMTE=;sn=971211 + 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: + - '"NO09oZaKIDhYChlVVCOYwkYKBix"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:46 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v1&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:46 GMT + etag: + - '"NO09oZaKIDhYChlVVCOYwkYKBix"' + last-modified: + - Fri, 03 Jan 2020 20:39:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMTI=;sn=971212 + 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: + - '"vPxmcbZWfSkhCDpfONVq8IDdMmY"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:46 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v2&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:47 GMT + etag: + - '"vPxmcbZWfSkhCDpfONVq8IDdMmY"' + last-modified: + - Fri, 03 Jan 2020 20:39:46 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMTM=;sn=971213 + 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: + - Jan, 03 2020 20:39:47 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"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' + 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: + - Fri, 03 Jan 2020 20:39:47 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:47 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:47 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:47 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:48 GMT + etag: + - '"fUP27LwwyVxBTBTM1YMWv47Awbb"' + last-modified: + - Fri, 03 Jan 2020 20:39:48 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMTQ=;sn=971214 + 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: + - Jan, 03 2020 20:39:48 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:48 GMT + etag: + - '"CxRAhz8iZlysVVB1usV7Fnzzz1f"' + last-modified: + - Fri, 03 Jan 2020 20:39:48 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMTU=;sn=971215 + 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: + - Jan, 03 2020 20:39:48 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39:48+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: + - Fri, 03 Jan 2020 20:39:48 GMT + etag: + - '"lCOtdNmTGzJaQieRJanZyT6ZGC7"' + last-modified: + - Fri, 03 Jan 2020 20:39:48 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMTY=;sn=971216 + 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: + - Jan, 03 2020 20:39:48 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:48 GMT + etag: + - '"0CjZ8l0NW0f7P2t2G4suY0rxdmq"' + last-modified: + - Fri, 03 Jan 2020 20:39:49 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMTc=;sn=971217 + 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: + - Jan, 03 2020 20:39:48 GMT + method: GET + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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' + 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: + - Fri, 03 Jan 2020 20:39:49 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMTc=;sn=971217 + 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: + - '"0CjZ8l0NW0f7P2t2G4suY0rxdmq"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:49 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=DestLabel&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:49 GMT + etag: + - '"0CjZ8l0NW0f7P2t2G4suY0rxdmq"' + last-modified: + - Fri, 03 Jan 2020 20:39:49 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMTg=;sn=971218 + 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: + - '"CxRAhz8iZlysVVB1usV7Fnzzz1f"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:49 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=DestLabel&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:49 GMT + etag: + - '"CxRAhz8iZlysVVB1usV7Fnzzz1f"' + last-modified: + - Fri, 03 Jan 2020 20:39:48 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMTk=;sn=971219 + 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: + - Jan, 03 2020 20:39:49 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"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' + 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: + - Fri, 03 Jan 2020 20:39:49 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:50 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:50 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:50 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:50 GMT + etag: + - '"8wZYAeoYY8ml6XhTrqch0it1x7O"' + last-modified: + - Fri, 03 Jan 2020 20:39:51 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMjA=;sn=971220 + 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: + - Jan, 03 2020 20:39:50 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:50 GMT + etag: + - '"sgja5wJCxnH2wpNXFBM5K1FtLgC"' + last-modified: + - Fri, 03 Jan 2020 20:39:51 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMjE=;sn=971221 + 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: + - Jan, 03 2020 20:39:50 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39:51+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: + - Fri, 03 Jan 2020 20:39:50 GMT + etag: + - '"lAHIfI0RsJCQ4txDkrx7HrsWfs8"' + last-modified: + - Fri, 03 Jan 2020 20:39:51 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMjI=;sn=971222 + 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: + - Jan, 03 2020 20:39:50 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39:51+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: + - Fri, 03 Jan 2020 20:39:51 GMT + etag: + - '"IdJpymZq57oCLABOIxR5dZ40xWs"' + last-modified: + - Fri, 03 Jan 2020 20:39:51 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMjM=;sn=971223 + 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: + - Jan, 03 2020 20:39:51 GMT + method: GET + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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' + 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: + - Fri, 03 Jan 2020 20:39:51 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMjM=;sn=971223 + 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: + - '"IdJpymZq57oCLABOIxR5dZ40xWs"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:51 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39:51+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: + - Fri, 03 Jan 2020 20:39:51 GMT + etag: + - '"IdJpymZq57oCLABOIxR5dZ40xWs"' + last-modified: + - Fri, 03 Jan 2020 20:39:51 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMjQ=;sn=971224 + 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: + - '"sgja5wJCxnH2wpNXFBM5K1FtLgC"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:51 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:51 GMT + etag: + - '"sgja5wJCxnH2wpNXFBM5K1FtLgC"' + last-modified: + - Fri, 03 Jan 2020 20:39:51 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMjU=;sn=971225 + 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: + - Jan, 03 2020 20:39:52 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=*&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"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' + 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: + - Fri, 03 Jan 2020 20:39:52 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:52 GMT + method: GET + uri: https://sourcenf4262o6ibwnfc7c55.azconfig.io/kv?key=.appconfig.featureflag%2F%2A&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"2020-01-03T20:39: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: + - Fri, 03 Jan 2020 20:39:52 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=ODotMSM1MDM0NDg=;sn=503448 + 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: + - Jan, 03 2020 20:39:52 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v1&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:53 GMT + etag: + - '"FkX6LzyxMd0kKmsYziSQXLSNh9e"' + last-modified: + - Fri, 03 Jan 2020 20:39:53 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMjY=;sn=971226 + 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: + - Jan, 03 2020 20:39:53 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v2&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:53 GMT + etag: + - '"DhgwFoCuNJxnvwHp0moXwZqoJcJ"' + last-modified: + - Fri, 03 Jan 2020 20:39:53 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMjc=;sn=971227 + 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: + - Jan, 03 2020 20:39:53 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39:53+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: + - Fri, 03 Jan 2020 20:39:53 GMT + etag: + - '"pJ8jPlJpd7PfUAHinJ2Sa3LXhkF"' + last-modified: + - Fri, 03 Jan 2020 20:39:53 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMjg=;sn=971228 + 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: + - Jan, 03 2020 20:39:53 GMT + method: PUT + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39:53+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: + - Fri, 03 Jan 2020 20:39:53 GMT + etag: + - '"sVv00V7srU4OWjKmn9WaIOoqqAJ"' + last-modified: + - Fri, 03 Jan 2020 20:39:53 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMjk=;sn=971229 + 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: + - Jan, 03 2020 20:39:53 GMT + method: GET + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv?key=%2A&label=%2A&fields=&api-version=1.0 + response: + body: + 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":"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":"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' + 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: + - Fri, 03 Jan 2020 20:39:53 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMjk=;sn=971229 + 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: + - '"pJ8jPlJpd7PfUAHinJ2Sa3LXhkF"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:53 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v1&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39:53+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: + - Fri, 03 Jan 2020 20:39:54 GMT + etag: + - '"pJ8jPlJpd7PfUAHinJ2Sa3LXhkF"' + last-modified: + - Fri, 03 Jan 2020 20:39:53 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMzA=;sn=971230 + 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: + - '"sVv00V7srU4OWjKmn9WaIOoqqAJ"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:54 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/.appconfig.featureflag%2FBeta?label=v2&api-version=1.0 + response: + body: + 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":"2020-01-03T20:39:53+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: + - Fri, 03 Jan 2020 20:39:54 GMT + etag: + - '"sVv00V7srU4OWjKmn9WaIOoqqAJ"' + last-modified: + - Fri, 03 Jan 2020 20:39:53 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMzE=;sn=971231 + 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: + - '"FkX6LzyxMd0kKmsYziSQXLSNh9e"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:54 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v1&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:54 GMT + etag: + - '"FkX6LzyxMd0kKmsYziSQXLSNh9e"' + last-modified: + - Fri, 03 Jan 2020 20:39:53 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMzI=;sn=971232 + 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: + - '"DhgwFoCuNJxnvwHp0moXwZqoJcJ"' + User-Agent: + - AzconfigClient/1.0.0/CLI + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Jan, 03 2020 20:39:54 GMT + method: DELETE + uri: https://destinationgzgnguxt5lrt7.azconfig.io/kv/Color?label=v2&api-version=1.0 + response: + body: + 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' + 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: + - Fri, 03 Jan 2020 20:39:54 GMT + etag: + - '"DhgwFoCuNJxnvwHp0moXwZqoJcJ"' + last-modified: + - Fri, 03 Jan 2020 20:39:53 GMT + server: + - openresty/1.15.8.1 + strict-transport-security: + - max-age=15724800; includeSubDomains + sync-token: + - zAJw6V16=NDotMSM5NzEyMzM=;sn=971233 + 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 1da4a54eebe..ff5c99d929b 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 @@ -18,6 +18,7 @@ from azure.cli.command_modules.appconfig._constants import KeyVaultConstants TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) +FEATURE_FLAG_PREFIX = ".appconfig.featureflag/" class AppConfigMgmtScenarioTest(ScenarioTest): @@ -586,6 +587,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):